/* ==========================================================================
   CSS VARIABLES & THEME CONFIGURATION
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-base: #050507;
    --bg-surface: #0a0a0f;
    --bg-surface-light: #12121c;
    --bg-panel: rgba(255, 255, 255, 0.03);

    --primary: #00f0ff;
    /* Neon Cyan */
    --primary-dim: rgba(0, 240, 255, 0.15);
    --secondary: #7000ff;
    /* Deep Neon Purple */
    --secondary-dim: rgba(112, 0, 255, 0.15);
    --accent: #ff0055;
    /* Neon Pink/Red */

    --text-main: #ffffff;
    --text-muted: #8b8b9e;
    --text-dark: #000000;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 240, 255, 0.3);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto Mono', monospace;
    --font-sans: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1400px;
    --section-pad-y: 120px;
    --section-pad-x: 5%;

    /* Transitions & Shadows */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --glow-primary: 0 0 20px var(--primary-dim), 0 0 40px var(--primary-dim);
    --glow-secondary: 0 0 20px var(--secondary-dim), 0 0 40px var(--secondary-dim);

    /* Z-Index Layers */
    --z-back: -1;
    --z-normal: 1;
    --z-ui: 10;
    --z-header: 100;
    --z-modal: 200;
    --z-cursor: 9999;
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* For Custom Cursor */
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
    position: relative;
    z-index: var(--z-normal);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: block;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: var(--z-cursor);
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-dim);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline.hovered {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dim);
    border-color: var(--primary);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-base);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-content img {
    width: 150px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 10px var(--primary));
    animation: pulseLogo 2s infinite alternate;
    filter: brightness(1) invert(1);
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 5px;
    margin-bottom: 20px;
    position: relative;
}

.loading-bar-wrapper {
    width: 300px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: var(--glow-primary);
}

@keyframes pulseLogo {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--primary));
    }
}

/* ==========================================================================
   STRICTLY IDENTICAL HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: var(--z-header);
    transition: background-color var(--transition-fast), padding var(--transition-fast), box-shadow var(--transition-fast);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(5, 5, 7, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 101;
}

.brand-logo img {
    height: 40px;
    width: auto;
    
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
    box-shadow: var(--glow-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.btn-neon:hover {
    color: var(--bg-base);
    box-shadow: var(--glow-primary);
}

.btn-neon:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (3D & GLITCH EFFECTS)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    perspective: 1000px;
}

.hero-grid-bg {
    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: 50px 50px;
    transform: rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    z-index: var(--z-back);
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: rotateX(60deg) translateY(50px) translateZ(-200px);
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.glitch-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.glitch-text {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-main);
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(15px, 9999px, 86px, 0);
    }

    5% {
        clip: rect(61px, 9999px, 12px, 0);
    }

    10% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    15% {
        clip: rect(89px, 9999px, 49px, 0);
    }

    20% {
        clip: rect(1px, 9999px, 76px, 0);
    }

    25% {
        clip: rect(55px, 9999px, 20px, 0);
    }

    30% {
        clip: rect(93px, 9999px, 4px, 0);
    }

    35% {
        clip: rect(22px, 9999px, 68px, 0);
    }

    40% {
        clip: rect(82px, 9999px, 51px, 0);
    }

    45% {
        clip: rect(40px, 9999px, 10px, 0);
    }

    50% {
        clip: rect(77px, 9999px, 33px, 0);
    }

    55% {
        clip: rect(14px, 9999px, 88px, 0);
    }

    60% {
        clip: rect(59px, 9999px, 42px, 0);
    }

    65% {
        clip: rect(96px, 9999px, 19px, 0);
    }

    70% {
        clip: rect(27px, 9999px, 73px, 0);
    }

    75% {
        clip: rect(85px, 9999px, 56px, 0);
    }

    80% {
        clip: rect(48px, 9999px, 8px, 0);
    }

    85% {
        clip: rect(70px, 9999px, 91px, 0);
    }

    90% {
        clip: rect(11px, 9999px, 37px, 0);
    }

    95% {
        clip: rect(66px, 9999px, 64px, 0);
    }

    100% {
        clip: rect(34px, 9999px, 25px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(89px, 9999px, 15px, 0);
    }

    5% {
        clip: rect(22px, 9999px, 61px, 0);
    }

    10% {
        clip: rect(76px, 9999px, 31px, 0);
    }

    15% {
        clip: rect(10px, 9999px, 89px, 0);
    }

    20% {
        clip: rect(51px, 9999px, 1px, 0);
    }

    25% {
        clip: rect(94px, 9999px, 55px, 0);
    }

    30% {
        clip: rect(33px, 9999px, 93px, 0);
    }

    35% {
        clip: rect(68px, 9999px, 22px, 0);
    }

    40% {
        clip: rect(4px, 9999px, 82px, 0);
    }

    45% {
        clip: rect(88px, 9999px, 40px, 0);
    }

    50% {
        clip: rect(42px, 9999px, 77px, 0);
    }

    55% {
        clip: rect(19px, 9999px, 14px, 0);
    }

    60% {
        clip: rect(73px, 9999px, 59px, 0);
    }

    65% {
        clip: rect(56px, 9999px, 96px, 0);
    }

    70% {
        clip: rect(8px, 9999px, 27px, 0);
    }

    75% {
        clip: rect(91px, 9999px, 85px, 0);
    }

    80% {
        clip: rect(37px, 9999px, 48px, 0);
    }

    85% {
        clip: rect(64px, 9999px, 70px, 0);
    }

    90% {
        clip: rect(25px, 9999px, 11px, 0);
    }

    95% {
        clip: rect(86px, 9999px, 66px, 0);
    }

    100% {
        clip: rect(12px, 9999px, 34px, 0);
    }
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Floating 3D Elements */
.hero-3d-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    transform-style: preserve-3d;
}

.floating-node {
    position: absolute;
    background: var(--bg-surface-light);
    border: 1px solid var(--border-highlight);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatNode 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.floating-node i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-node .node-data {
    display: flex;
    flex-direction: column;
}

.node-data span:first-child {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.node-data span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.node-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.node-2 {
    top: 50%;
    right: 30%;
    animation-delay: 2s;
    border-color: var(--secondary);
}

.node-2 i {
    color: var(--secondary);
}

.node-3 {
    top: 70%;
    right: 5%;
    animation-delay: 4s;
    border-color: var(--accent);
}

.node-3 i {
    color: var(--accent);
}

@keyframes floatNode {
    0% {
        transform: translateY(0) translateZ(0) rotateX(0) rotateY(0);
    }

    50% {
        transform: translateY(-20px) translateZ(50px) rotateX(10deg) rotateY(-10deg);
    }

    100% {
        transform: translateY(0) translateZ(0) rotateX(0) rotateY(0);
    }
}

/* ==========================================================================
   ABOUT / DECODING SECTION
   ========================================================================== */
.about-section {
    padding: var(--section-pad-y) 0;
    background-color: var(--bg-surface);
    position: relative;
    border-top: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid var(--primary-dim);
    position: relative;
    box-shadow: inset 0 0 40px var(--primary-dim);
}

.radar-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 70%, rgba(0, 240, 255, 0.4) 100%);
    border-radius: 50%;
    transform-origin: 0 0;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   SERVICES SECTION (3D CARDS)
   ========================================================================== */
.services-section {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    perspective: 1000px;
}

.service-card {
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, border-color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--primary-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--glow-primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transform: translateZ(30px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

/* ==========================================================================
   ROI CALCULATOR SECTION
   ========================================================================== */
.roi-section {
    padding: var(--section-pad-y) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.roi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-base);
    border: 1px solid var(--border-highlight);
    border-radius: 20px;
    padding: 50px;
    box-shadow: inset 0 0 50px rgba(0, 240, 255, 0.05);
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.calc-group input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg-surface-light);
    border-radius: 3px;
    outline: none;
}

.calc-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--glow-primary);
}

.calc-value-display {
    text-align: right;
    font-family: var(--font-body);
    color: var(--primary);
    font-weight: bold;
}

.roi-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-result h4 {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.projected-revenue {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-main);
    text-shadow: 0 0 20px var(--primary);
    margin-bottom: 10px;
}

.roi-percentage {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   CAMPAIGN REPORTS DASHBOARD (INTERACTIVE)
   ========================================================================== */
.reports-section {
    padding: var(--section-pad-y) 0;
}

.dashboard-mockup {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    height: 700px;
}

.dash-header {
    background: var(--bg-base);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dash-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot-r {
    background: #ff5f56;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #27c93f;
}

.dash-tabs {
    display: flex;
    gap: 20px;
}

.dash-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: var(--transition-fast);
}

.dash-tab.active,
.dash-tab:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-dim);
}

.dash-body {
    display: flex;
    flex: 1;
}

.dash-sidebar {
    width: 250px;
    background: var(--bg-base);
    border-right: 1px solid var(--border-color);
    padding: 25px;
}

.side-item {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-item i {
    color: var(--primary);
}

.dash-main {
    flex: 1;
    padding: 30px;
    position: relative;
}

.dash-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.dash-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
}

.metric-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.metric-card h4 {
    font-size: 2rem;
    color: var(--text-main);
    margin-top: 10px;
}

.metric-card .trend.up {
    color: #00ff88;
}

.metric-card .trend.down {
    color: var(--accent);
}

.chart-area {
    height: 300px;
    background: repeating-linear-gradient(0deg, transparent, transparent 49px, var(--border-color) 50px);
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 2%;
    padding-bottom: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(0deg, var(--secondary), var(--primary));
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.chart-bar::after {
    content: attr(data-val);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-main);
    font-size: 0.8rem;
    font-family: var(--font-body);
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.industry-marquee {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
    margin-top: 50px;
}

.industry-tag {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
    text-transform: uppercase;
    transition: var(--transition-fast);
    cursor: default;
}

.industry-tag:hover {
    color: var(--text-main);
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 20px var(--primary-dim);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testi-card {
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.testi-card i.fa-quote-left {
    font-size: 3rem;
    color: var(--primary-dim);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testi-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    color: var(--bg-base);
    font-weight: bold;
    font-size: 1.2rem;
}

.client-info h5 {
    font-size: 1rem;
    color: var(--primary);
}

.client-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CTA / QUICK CONTACT SECTION
   ========================================================================== */
.cta-section {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(0deg, var(--bg-base), var(--bg-surface));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-dim) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--bg-base);
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: var(--glow-primary);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 5px;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--primary);
}

/* ==========================================================================
   STRICTLY IDENTICAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: #030305;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 20px;
    position: relative;
    z-index: var(--z-normal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .brand-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: inset 0 0 10px var(--primary-dim);
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-muted);
}

.legal-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES (Contact, Legal)
   ========================================================================== */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--bg-surface), var(--bg-base));
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: var(--section-pad-y) 0;
}

.contact-form-container {
    background: var(--bg-surface-light);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 15px 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus~label,
.form-group textarea:focus~label,
.form-group input:valid~label,
.form-group textarea:valid~label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary);
}

/* Legal Pages */
.legal-content {
    padding: var(--section-pad-y) 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.legal-wrapper p,
.legal-wrapper ul {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-wrapper ul {
    padding-left: 20px;
    list-style: disc;
}

.legal-wrapper ul li {
    margin-bottom: 10px;
}

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */
.live-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-base);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: var(--z-modal);
    box-shadow: var(--glow-primary);
    transition: transform 0.3s;
}

.live-chat-btn:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-text {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .about-grid,
    .contact-grid,
    .roi-container {
        grid-template-columns: 1fr;
    }

    .hero-3d-elements {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dash-body {
        flex-direction: column;
    }

    .dash-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        overflow-x: auto;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    /* Hide for pure mobile layout simulation */
    .mobile-toggle {
        display: flex;
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-neon,
    .btn-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .roi-container {
        padding: 20px;
    }

    .projected-revenue {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   REDESIGN LAYER (2026 REFRESH)
   ========================================================================== */
:root {
    --bg-base: #060812;
    --bg-surface: #0c1220;
    --bg-surface-light: #111a2d;
    --bg-panel: rgba(255, 255, 255, 0.06);
    --primary: #59d8ff;
    --primary-dim: rgba(89, 216, 255, 0.22);
    --secondary: #8a7dff;
    --secondary-dim: rgba(138, 125, 255, 0.2);
    --accent: #ff6aa9;
    --text-main: #f6f9ff;
    --text-muted: #b1bfd8;
    --border-color: rgba(177, 191, 216, 0.2);
    --border-highlight: rgba(89, 216, 255, 0.45);
    --section-pad-y: 110px;
    --container-width: 1240px;
}

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(89, 216, 255, 0.12), transparent 40%),
        radial-gradient(circle at 95% 10%, rgba(138, 125, 255, 0.12), transparent 45%),
        var(--bg-base);
    cursor: auto;
}

.cursor-dot,
.cursor-outline {
    display: none;
}

.site-header {
    background: rgba(6, 8, 18, 0.55);
    border-bottom: 1px solid var(--border-color);
}

.site-header.scrolled {
    background: rgba(6, 8, 18, 0.88);
}

.btn-neon {
    border-radius: 999px;
    border-color: rgba(89, 216, 255, 0.65);
    background: linear-gradient(135deg, rgba(89, 216, 255, 0.14), rgba(138, 125, 255, 0.14));
}

.btn-neon::before {
    background: linear-gradient(90deg, var(--primary), #8dc4ff);
}

.btn-large {
    border-radius: 999px;
    background: linear-gradient(90deg, #59d8ff, #8a7dff);
    color: #041021;
    box-shadow: 0 10px 30px rgba(89, 216, 255, 0.35);
}

.hero-section {
    padding-top: 130px;
}

.hero-grid-bg {
    opacity: 0.15;
}

.glitch-text::before,
.glitch-text::after {
    display: none;
}

.glitch-text {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    letter-spacing: 1px;
    text-wrap: balance;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    max-width: 680px;
}

.service-card,
.testi-card,
.dashboard-mockup,
.roi-container,
.contact-form-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.service-card {
    border-radius: 18px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(3, 8, 20, 0.45);
}

.section-title {
    letter-spacing: 1px;
}

.about-text p,
.service-card p,
.testi-text,
.cta-content p,
.footer-brand p,
.legal-wrapper p,
.legal-wrapper ul {
    font-family: var(--font-sans);
}

.roi-container {
    gap: 40px;
    border-radius: 20px;
}

.roi-result {
    background: linear-gradient(145deg, rgba(89, 216, 255, 0.12), rgba(138, 125, 255, 0.14));
}

.projected-revenue {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    text-shadow: none;
}

.dash-header,
.dash-sidebar {
    background: rgba(4, 11, 22, 0.7);
}

.metric-card {
    border-radius: 12px;
}

.chart-area {
    border-radius: 12px;
    padding: 14px 10px 10px;
}

.chart-bar {
    border-radius: 10px 10px 0 0;
}

.industry-tag {
    -webkit-text-stroke: 1px rgba(246, 249, 255, 0.45);
    font-size: clamp(1.3rem, 3vw, 2rem);
}

.cta-section::before {
    width: 520px;
    height: 520px;
}

.site-footer {
    background: #060910;
}

@media (max-width: 992px) {
    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .roi-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 0;
    }

    .main-nav {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 70px;
    }

    .about-section,
    .services-section,
    .roi-section,
    .reports-section,
    .industries-section,
    .testimonials-section,
    .cta-section {
        padding: 80px 0;
    }
}

/* ==========================================================================
   LAYOUT V2 (FULL STRUCTURE REDESIGN)
   ========================================================================== */
.layout-v2 .hero-v2 {
    min-height: auto;
    padding: 150px 0 80px;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.hero-panel {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 20px 60px rgba(4, 11, 26, 0.4);
}

.hero-panel h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.mini-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.mini-metrics div {
    border: 1px solid rgba(177, 191, 216, 0.24);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    background: rgba(7, 13, 25, 0.65);
}

.mini-metrics span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
}

.mini-metrics small {
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.4px;
}

.hero-bars {
    display: grid;
    gap: 12px;
}

.hero-bars .bar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
}

.hero-bars .bar span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.hero-bars .bar small {
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.trust-strip {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(8, 13, 23, 0.7);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 16px var(--section-pad-x);
}

.trust-items p {
    color: var(--text-muted);
    margin-right: 4px;
}

.trust-items span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.86rem;
}

.steps-card {
    position: absolute;
    right: 0;
    bottom: 12%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: rgba(6, 12, 23, 0.78);
    padding: 18px;
    min-width: 220px;
}

.steps-card p {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.steps-card p:last-child {
    margin-bottom: 0;
}

.steps-card strong {
    color: var(--primary);
    margin-right: 8px;
}

.layout-v2 .section-header {
    margin-bottom: 26px;
}

.layout-v2 .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.layout-v2 .service-card {
    padding: 28px;
}

.layout-v2 .service-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.layout-v2 .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.layout-v2 .service-card p {
    font-size: 0.95rem;
}

.layout-v2 .roi-section .section-header,
.layout-v2 .reports-section .section-header {
    text-align: left;
}

.layout-v2 .dashboard-mockup {
    height: auto;
    min-height: 580px;
}

@media (max-width: 992px) {
    .hero-v2-grid {
        grid-template-columns: 1fr;
    }

    .steps-card {
        position: static;
        margin-top: 16px;
    }

    .layout-v2 .services-grid {
        grid-template-columns: 1fr;
    }
}