/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=Syne:wght@400;700;800&display=swap');

:root {
    --bg-deep: #05020a;
    --bg-surface: #0f071e;
    --bg-glass: rgba(15, 7, 30, 0.6);
    --neon-pink: #ff0055;
    --neon-purple: #8a2be2;
    --neon-cyan: #00f0ff;
    --text-light: #f4f0fd;
    --text-muted: #a395ba;
    --border-glow: rgba(255, 0, 85, 0.3);
    --border-glass: rgba(255, 255, 255, 0.05);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor used */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-purple), var(--neon-pink));
    border-radius: 10px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.2);
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    top: -100px;
    left: -100px;
    opacity: 0.3;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-pink);
    bottom: 10%;
    right: -200px;
    opacity: 0.2;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    top: 40%;
    left: 30%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 150px) scale(1.2);
    }
}

/* =========================================
   STRICT HEADER & FOOTER
========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-slow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.logo img {
    height: 40px;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.btn-neon {
    background: transparent;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--neon-pink);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 85, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
    border-color: transparent;
}

.mobile-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

footer {
    background: #030106;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-pink);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   LAYOUT & CONTAINERS
========================================= */
section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.section-header p {
    max-width: 600px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
}

/* =========================================
   INDEX: 1. HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-text h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-cyan);
    display: block;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 90%;
    color: var(--text-light);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Isometric Hero Graphic */
.isometric-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg);
}

.iso-layer {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid var(--neon-purple);
    box-shadow: inset 0 0 20px rgba(138, 43, 226, 0.2), 0 0 30px rgba(138, 43, 226, 0.4);
    backdrop-filter: blur(5px);
    top: 50%;
    left: 50%;
    border-radius: 20px;
    transition: 0.5s;
}

.layer-1 {
    transform: translate(-50%, -50%) translateZ(0px);
    animation: pulseLayer 4s infinite alternate;
}

.layer-2 {
    transform: translate(-50%, -50%) translateZ(80px);
    background: rgba(255, 0, 85, 0.1);
    border-color: var(--neon-pink);
    box-shadow: inset 0 0 20px rgba(255, 0, 85, 0.2);
    animation: pulseLayer 4s infinite alternate 1s;
}

.layer-3 {
    transform: translate(-50%, -50%) translateZ(160px);
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2);
    animation: pulseLayer 4s infinite alternate 2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layer-3::after {
    content: 'ROAS';
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    transform: rotateX(-90deg) rotateY(0deg) rotateZ(45deg);
    text-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes pulseLayer {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 50px currentColor;
    }
}

/* =========================================
   INDEX: 2. MARQUEE (TRUST BAR)
========================================= */
.marquee-section {
    padding: 3rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
    gap: 4rem;
    padding-left: 4rem;
    align-items: center;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.marquee-item:hover {
    color: var(--neon-cyan);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 15px var(--neon-cyan);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   INDEX: 3. ABOUT PHILOSOPHY
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--bg-deep);
    border-radius: 26px;
    z-index: 1;
}

.about-image-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-graph {
    width: 80%;
    height: 80%;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawGraph 5s ease forwards infinite;
}

@keyframes drawGraph {
    to {
        stroke-dashoffset: 0;
    }
}

/* =========================================
   INDEX: 4. SERVICES (NEON CARDS)
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.svc-card {
    background: rgba(15, 7, 30, 0.4);
    border: 1px solid var(--border-glass);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: left;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--neon-pink));
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: 0.5s;
    z-index: 0;
}

.svc-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-surface);
    border-radius: 13px;
    z-index: 1;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.svc-content {
    position: relative;
    z-index: 2;
}

.svc-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.svc-card:hover .svc-icon {
    transform: scale(1.1) rotate(-10deg);
    color: var(--neon-pink);
}

.svc-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   INDEX: 5. INTERACTIVE REPORTS (DATA RINGS)
========================================= */
.reports-wrapper {
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.reports-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.rep-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-glass);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-fast);
    z-index: 10;
}

.rep-btn.active,
.rep-btn:hover {
    background: var(--neon-purple);
    color: #fff;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple);
}

.rep-panel {
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.rep-panel.active {
    display: block;
}

.data-rings-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.ring-box {
    text-align: center;
    position: relative;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 150px;
    max-height: 150px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 2s ease-out forwards;
}

.percentage {
    fill: #fff;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: bold;
    text-anchor: middle;
}

.ring-box h4 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   INDEX: 6. INDUSTRIES (HEXAGONS)
========================================= */
.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hex-item {
    width: 200px;
    height: 230px;
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: var(--transition-slow);
    border: 1px solid var(--border-glass);
}

.hex-item:hover {
    background: var(--neon-purple);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon-purple);
}

.hex-item svg {
    width: 40px;
    height: 40px;
    fill: var(--neon-cyan);
    margin-bottom: 1rem;
}

.hex-item:hover svg {
    fill: #fff;
}

/* =========================================
   INDEX: 7. TIMELINE / PROCESS
========================================= */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-purple));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tl-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding-right: 3rem;
    left: 0;
}

.tl-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
}

.tl-item:nth-child(odd) {
    text-align: right;
}

.tl-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--bg-deep);
    border: 4px solid var(--neon-cyan);
    border-radius: 50%;
    right: -12px;
    top: 10px;
    z-index: 2;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.tl-item:nth-child(even) .tl-dot {
    left: -12px;
}

.tl-content {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-glass);
    display: inline-block;
    width: 100%;
    transition: var(--transition-fast);
}

.tl-content:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.tl-content h3 {
    color: var(--neon-pink);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   INDEX: 8. VIDEO/CASE STUDY TEASER
========================================= */
.video-teaser {
    text-align: center;
    position: relative;
    padding: 8rem 2rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%230f071e" width="100" height="100"/><circle cx="50" cy="50" r="40" stroke="%238a2be2" stroke-width="2" fill="none" opacity="0.1"/></svg>') center/cover;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 0, 85, 0.2);
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    cursor: none;
    transition: var(--transition-fast);
    z-index: 10;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.play-btn:hover {
    background: var(--neon-pink);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon-pink);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--neon-pink);
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* =========================================
   INDEX: 9. TESTIMONIALS (MASONRY/CARDS)
========================================= */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.test-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-fast);
}

.test-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
}

.test-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #ddd;
}

.test-author h4 {
    margin: 0;
    color: var(--neon-cyan);
}

/* =========================================
   INDEX: 10. CTA PRE-FOOTER
========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--neon-purple), #3a0ca3);
    text-align: center;
    padding: 6rem 2rem;
    border-radius: 30px;
    margin: 0 2rem 5rem;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-section .btn-neon {
    background: #fff;
    color: var(--bg-deep);
    border: none;
    font-size: 1.1rem;
}

.cta-section .btn-neon:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 20px #fff;
}

/* =========================================
   FORMS & CONTACT PAGES
========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
}

.contact-info h2 {
    color: var(--neon-cyan);
    font-size: 2.5rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.info-list svg {
    width: 30px;
    height: 30px;
    fill: var(--neon-pink);
    flex-shrink: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group.full {
    grid-column: 1 / -1;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 0;
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.input-group select {
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group select option {
    background: var(--bg-surface);
    color: #fff;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--neon-cyan);
}

.input-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
    font-size: 1.1rem;
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

/* =========================================
   LEGAL PAGES
========================================= */
.legal-page-header {
    padding: 12rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.legal-page-header h1 {
    font-size: 4rem;
    color: var(--neon-pink);
    text-transform: uppercase;
}

.legal-content-box {
    max-width: 900px;
    margin: 4rem auto 8rem;
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.legal-content-box h2 {
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content-box p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.legal-content-box ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.legal-content-box ul li {
    list-style-type: square;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

/* =========================================
   ANIMATIONS & UTILITIES
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .tl-item {
        width: 100%;
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
        left: 0 !important;
    }

    .tl-dot {
        left: 18px !important;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .cta-section {
        margin: 0 0 5rem 0;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(5, 2, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-slow);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .btn-neon.hide-mobile {
        display: none;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .custom-cursor,
    .cursor-dot {
        display: none;
    }

    /* Disable custom cursor on mobile */
    * {
        cursor: auto;
    }
}