/* ==========================================================================
   CSS Variables & Custom Properties (Cyber-Tech Theme)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Color Palette */
    --bg-base: #070B14;
    /* Very Dark Indigo (Base) */
    --bg-surface: #0E1424;
    /* Lighter Indigo (Cards) */
    --bg-surface-glass: rgba(14, 20, 36, 0.7);

    --neon-cyan: #00F0FF;
    /* Primary Accent */
    --neon-cyan-dim: rgba(0, 240, 255, 0.2);
    --neon-purple: #8A2BE2;
    /* Secondary Accent */
    --neon-purple-dim: rgba(138, 43, 226, 0.2);

    --text-main: #E2E8F0;
    /* Light Slate */
    --text-muted: #94A3B8;
    /* Muted Slate */
    --text-white: #FFFFFF;

    /* Typography */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Spacing */
    --max-width: 1400px;
    --section-pad: 140px 20px;
    --header-height: 90px;

    /* Border & Shadows */
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --border-glow: 1px solid rgba(0, 240, 255, 0.3);

    --shadow-cyan: 0 0 20px rgba(0, 240, 255, 0.15);
    --shadow-purple: 0 0 20px rgba(138, 43, 226, 0.15);
    --shadow-cyan-intense: 0 0 30px rgba(0, 240, 255, 0.4);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

body::before {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--neon-purple-dim);
}

body::after {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--neon-cyan-dim);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), #00A3FF);
    z-index: -1;
    transition: width var(--transition-smooth);
}

.btn-primary:hover {
    color: var(--bg-base);
    box-shadow: var(--shadow-cyan-intense);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-white);
    border: var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

/* Section Titles */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title.left {
    text-align: left;
}

.section-title h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 15px auto 0;
}

.section-title.left p {
    margin: 15px 0 0 0;
}

.subtitle-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--neon-purple-dim);
    color: #D8B4FE;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.4);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    height: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 35px;
    margin-right: 40px;
}

.nav-list li a {
    color: var(--text-main);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-list li a:hover {
    color: var(--text-white);
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 2px;
    background: var(--text-white);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--text-white);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Cyber Grid Background */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(transparent 95%, rgba(0, 240, 255, 0.1) 100%), linear-gradient(90deg, transparent 95%, rgba(0, 240, 255, 0.1) 100%);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    animation: slideUp 1s ease forwards;
    opacity: 0;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: slideUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: slideUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    animation: fadeIn 1.5s ease 0.6s forwards;
    opacity: 0;
}

.hologram-ring {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 240, 255, 0.3);
    position: absolute;
    animation: spin 20s linear infinite;
    transform-style: preserve-3d;
}

.hologram-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(138, 43, 226, 0.4);
    animation: spinReverse 15s linear infinite;
}

.hologram-card {
    background: rgba(14, 20, 36, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 320px;
    position: relative;
    box-shadow: var(--shadow-cyan);
    transform: rotateY(-15deg) rotateX(10deg);
    animation: float 6s ease-in-out infinite;
}

.holo-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    margin-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.holo-bar {
    background: var(--neon-cyan);
    width: 100%;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.holo-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px 4px 0 0;
}

/* ==========================================================================
   2. Infinite Data Marquee
   ========================================================================== */
.marquee-wrapper {
    background: var(--bg-surface);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 30px 0;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    align-items: center;
}

.marquee-item {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--neon-cyan);
    stroke-width: 2;
}

/* ==========================================================================
   3. About / Metrics
   ========================================================================== */
.about {
    padding: var(--section-pad);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.data-card {
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.data-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--neon-purple);
    filter: blur(60px);
    border-radius: 50%;
    transition: var(--transition-smooth);
    opacity: 0;
}

.data-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: var(--shadow-purple);
}

.data-card:hover::before {
    opacity: 0.5;
}

.data-value {
    font-size: 3.5rem;
    font-family: var(--font-head);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
}

.data-label {
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   4. Services (Hex/Grid Layout)
   ========================================================================== */
.services {
    padding: var(--section-pad);
    background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface), var(--bg-base));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-card {
    background: rgba(14, 20, 36, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
}

.svc-card:hover {
    transform: translateY(-10px);
    background: rgba(14, 20, 36, 0.8);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-cyan);
}

.svc-card:hover::after {
    width: 100%;
}

.svc-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--neon-cyan);
}

.svc-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.svc-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   5. Our Methodology (Process Flow)
   ========================================================================== */
.process {
    padding: var(--section-pad);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.process-flow::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    z-index: 2;
    transition: width 1s ease;
}

.process.active .process-flow::after {
    width: 90%;
}

.step {
    text-align: center;
    position: relative;
    z-index: 3;
    width: 22%;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.step:hover .step-icon {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   6. Industry Sectors (Hover Expand)
   ========================================================================== */
.industries {
    padding: var(--section-pad);
    background: var(--bg-surface);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.ind-container {
    display: flex;
    height: 400px;
    gap: 20px;
    margin-top: 50px;
}

.ind-panel {
    flex: 1;
    background: var(--bg-base);
    border-radius: var(--radius-md);
    border: var(--border-glass);
    position: relative;
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    cursor: pointer;
}

.ind-panel:hover {
    flex: 3;
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: var(--shadow-purple);
}

.ind-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 11, 20, 0.9), transparent);
    z-index: 1;
}

.ind-content {
    position: relative;
    z-index: 2;
}

.ind-content h3 {
    font-size: 1.5rem;
    margin: 0;
    transition: var(--transition-fast);
}

.ind-content p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-muted);
    margin-top: 10px;
}

.ind-panel:hover .ind-content h3 {
    color: var(--neon-purple);
    font-size: 2rem;
}

.ind-panel:hover .ind-content p {
    opacity: 1;
    max-height: 100px;
}

.ind-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.3;
    transition: var(--transition-smooth);
    z-index: 2;
}

.ind-panel:hover .ind-icon {
    opacity: 1;
    color: var(--neon-purple);
    transform: scale(1.2);
}

/* ==========================================================================
   7. Sample Campaign Reports (Interactive 3D Cards)
   ========================================================================== */
.reports {
    padding: var(--section-pad);
    position: relative;
}

.reports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    perspective: 1500px;
}

.report-card {
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    cursor: crosshair;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.report-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.3);
}

.report-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    transform: translateZ(30px);
}

.report-badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.report-body {
    transform: translateZ(50px);
}

.report-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.r-metric span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.r-metric strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--neon-cyan);
}

/* ==========================================================================
   8. Why Choose Us (Split Sticky)
   ========================================================================== */
.why-us {
    padding: var(--section-pad);
    background: var(--bg-surface);
}

.why-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    margin-bottom: 30px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.w-item {
    position: relative;
    padding-left: 40px;
}

.w-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
}

.w-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background: rgba(138, 43, 226, 0.2);
}

.w-item:last-child::after {
    display: none;
}

.w-item h4 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.why-visual {
    flex: 1;
    position: sticky;
    top: 120px;
    height: 500px;
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Abstract glowing nodes SVG inside visual */
.why-visual svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

/* ==========================================================================
   9. Testimonials (Sliding Track)
   ========================================================================== */
.testi {
    padding: var(--section-pad);
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    cursor: grab;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.testi-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 400px;
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: var(--border-glass);
    scroll-snap-align: center;
    transition: var(--transition-smooth);
}

.testi-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.quote-mark {
    font-family: serif;
    font-size: 4rem;
    color: var(--neon-cyan);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 30px;
}

.t-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
    color: #CBD5E1;
}

.t-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--neon-purple);
}

.t-client h4 {
    margin: 0;
    font-size: 1rem;
}

.t-client span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   10. Contact / CTA (Glowing Form)
   ========================================================================== */
.contact-cta {
    padding: var(--section-pad);
    position: relative;
}

.contact-box {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(0, 240, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.c-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.c-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: var(--border-glass);
}

.c-method svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-cyan);
    fill: none;
    stroke-width: 2;
}

.c-form .input-wrap {
    position: relative;
    margin-bottom: 25px;
}

.c-form input,
.c-form select,
.c-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.c-form textarea {
    height: 120px;
    resize: none;
}

.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.c-form label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.c-form input:focus~label,
.c-form input:valid~label,
.c-form textarea:focus~label,
.c-form textarea:valid~label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--bg-surface);
    padding: 0 5px;
    color: var(--neon-cyan);
}

/* ==========================================================================
   Footer (Massive Structure)
   ========================================================================== */
.site-footer {
    background: #04070D;
    padding-top: 100px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    z-index: 2;
    position: relative;
}

.f-logo {
    height: 60px;
    margin-bottom: 25px;
}

.f-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 350px;
}

.f-socials {
    display: flex;
    gap: 15px;
}

.f-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    border: 1px solid transparent;
}

.f-socials a:hover {
    background: transparent;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.f-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: var(--text-muted);
    display: inline-block;
}

.f-links a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.f-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.f-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--neon-purple);
    flex-shrink: 0;
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: relative;
}

.f-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.f-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 20px;
}

.f-legal a:hover {
    color: var(--text-white);
}

/* ==========================================================================
   Legal Pages Specific Styling
   ========================================================================== */
.legal-header {
    padding: 180px 20px 100px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at top, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
}

.legal-header h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

.legal-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: var(--bg-surface);
    padding: 60px;
    border-radius: var(--radius-xl);
    border: var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-card h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--neon-cyan);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
    list-style: square;
}

.legal-card li {
    margin-bottom: 10px;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(-20px);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {

    .hero-content,
    .about-grid,
    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .ind-container {
        flex-direction: column;
        height: auto;
    }

    .ind-panel {
        min-height: 120px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .nav-list {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-surface-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
    }

    .nav-list.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hamburger.active {
        background: transparent;
    }

    .hamburger.active::before {
        transform: rotate(45deg);
        top: 0;
    }

    .hamburger.active::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .f-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .f-legal a {
        display: block;
        margin: 10px 0 0 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
        gap: 40px;
    }

    .process-flow::before,
    .process-flow::after {
        display: none;
    }

    .step {
        width: 100%;
    }
}