/* ==========================================================================
   Base Variables & Reset (Cyber-Pulse: Zinc, Neon Yellow, Hot Pink)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-base: #09090b;
    /* Zinc 950 */
    --bg-surface: #18181b;
    /* Zinc 900 */
    --bg-elevated: #27272a;
    /* Zinc 800 */
    --primary: #facc15;
    /* Neon Yellow */
    --primary-glow: rgba(250, 204, 21, 0.4);
    --secondary: #ec4899;
    /* Hot Pink */
    --secondary-glow: rgba(236, 72, 153, 0.4);
    --text-main: #fafafa;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dynamic Dot Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
}

/* Ambient Neon Blurs */
.neon-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

.blur-yellow {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: var(--primary);
}

.blur-pink {
    bottom: -10%;
    left: -5%;
    width: 50vw;
    height: 50vw;
    background: var(--secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-yellow {
    color: var(--primary);
}

.text-pink {
    color: var(--secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-xl {
    font-size: clamp(3.5rem, 6vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
}

.title-lg {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.subtitle.center {
    margin: 0 auto 4rem;
}

/* Magnetic & Glowing Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
    position: relative;
    z-index: 1;
    border: none;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-base);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px var(--secondary-glow);
    color: var(--secondary);
}

/* ==========================================================================
   STRICT HEADER CONSISTENCY
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    background: transparent;
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding-bottom: 2px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    left: 0;
    box-shadow: 0 0 10px var(--primary);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ==========================================================================
   Global Animations
   ========================================================================== */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger .stagger-box {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-stagger.is-visible .stagger-box {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Index Section 1: Hero
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary);
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50px;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

/* Abstract Floating Geometry */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.geo-shape {
    position: absolute;
    border: 2px solid var(--primary);
    opacity: 0.8;
    animation: floatShape 10s infinite linear;
    box-shadow: 0 0 20px var(--primary-glow), inset 0 0 20px var(--primary-glow);
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border-color: var(--secondary);
    box-shadow: 0 0 20px var(--secondary-glow), inset 0 0 20px var(--secondary-glow);
    border-style: dashed;
    animation-duration: 20s;
}

.shape-square {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
    animation-direction: reverse;
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid transparent;
    border: none;
    filter: drop-shadow(0 0 15px var(--primary));
    position: relative;
    animation-duration: 12s;
}

.shape-triangle::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -90px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-bottom: 155px solid var(--bg-base);
}

.shape-triangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--primary);
}

@keyframes floatShape {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    33% {
        transform: rotate(120deg) translate(30px, -30px);
    }

    66% {
        transform: rotate(240deg) translate(-30px, 30px);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

/* ==========================================================================
   Index Section 2: Logo Marquee
   ========================================================================== */
.brand-marquee {
    padding: 3rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    margin: 0 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px var(--border-color);
    color: transparent;
    transition: 0.3s;
}

.brand-name:hover {
    -webkit-text-stroke: 1px var(--primary);
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Index Section 3: Data Philosophy
   ========================================================================== */
.data-philosophy {
    padding: 8rem 0;
}

.dp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.dp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.stat-val {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.stat-lbl {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   Index Section 4: Services (Trace Borders)
   ========================================================================== */
.services-section {
    padding: 8rem 0;
    background: var(--bg-surface);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.srv-card {
    background: var(--bg-base);
    padding: 3rem;
    position: relative;
    border-radius: 8px;
    z-index: 1;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid transparent;
}

/* Tracing Border Effect */
.srv-card::before,
.srv-card::after {
    content: '';
    position: absolute;
    border: 2px solid transparent;
    width: 0;
    height: 0;
    box-sizing: border-box;
    z-index: -1;
}

.srv-card::before {
    top: 0;
    left: 0;
}

.srv-card::after {
    bottom: 0;
    right: 0;
}

.srv-card:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    transition: width 0.2s ease-out, height 0.2s ease-out 0.2s;
}

.srv-card:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--primary);
    border-left-color: var(--primary);
    transition: width 0.2s ease-out 0.4s, height 0.2s ease-out 0.6s;
}

.srv-card:hover {
    box-shadow: 0 0 30px var(--primary-glow);
}

.srv-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: 0.3s;
}

.srv-card:hover .srv-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 15px var(--secondary);
}

.srv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.srv-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   Index Section 5: Vertical Process Timeline
   ========================================================================== */
.process-section {
    padding: 8rem 0;
}

.process-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-wrapper::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -1px;
}

.process-step {
    padding: 2rem 0 2rem 100px;
    position: relative;
}

.step-dot {
    position: absolute;
    top: 2.5rem;
    left: 40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 4px solid var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
    z-index: 2;
}

.step-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Index Section 6: ROI Calculator (Neon Sliders)
   ========================================================================== */
.roi-section {
    padding: 8rem 0;
    background: var(--bg-surface);
}

.roi-container {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.roi-controls {
    padding: 4rem;
}

.roi-output {
    padding: 4rem;
    background: rgba(236, 72, 153, 0.05);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.roi-output::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--secondary-glow), transparent 70%);
    pointer-events: none;
}

.range-wrap {
    margin-bottom: 3rem;
}

.range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

.range-val {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    background: var(--bg-base);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 0 15px var(--primary);
}

.res-lbl {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.res-val {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
    margin-bottom: 2.5rem;
}

.res-val.highlight {
    color: var(--secondary);
    text-shadow: 0 0 20px var(--secondary-glow);
}

/* ==========================================================================
   Index Section 7: Animated CSS Grid Chart
   ========================================================================== */
.chart-section {
    padding: 8rem 0;
}

.chart-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem;
    margin-top: 4rem;
}

.css-grid-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 300px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 100% 50px;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, var(--secondary), var(--primary));
    position: relative;
    transition: height 1s ease-out;
    box-shadow: 0 0 20px var(--primary-glow);
}

.bar::after {
    content: attr(data-val);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.9rem;
}

.bar-lbl {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   Index Section 8: Industry Hexagons
   ========================================================================== */
.industry-section {
    padding: 8rem 0;
    background: var(--bg-surface);
}

.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.hex-card {
    width: 220px;
    height: 120px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 60px;
    transition: 0.3s;
    cursor: pointer;
}

.hex-card:hover {
    border-color: var(--secondary);
    background: rgba(236, 72, 153, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hex-icon {
    font-size: 2rem;
}

.hex-card h4 {
    font-size: 1rem;
    text-transform: uppercase;
}

/* ==========================================================================
   Index Section 9: Testimonials
   ========================================================================== */
.testi-section {
    padding: 8rem 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testi-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 8px;
    border-top: 4px solid var(--primary);
    position: relative;
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.testi-quote {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.testi-author h5 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.testi-author span {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Index Section 10: Final CTA
   ========================================================================== */
.cta-section {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(236, 72, 153, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-base) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.cta-input {
    width: 350px;
    padding: 1rem 1.5rem;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.cta-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================================================
   STRICT FOOTER CONSISTENCY
   ========================================================================== */
.site-footer {
    background: #050505;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-links span {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
    text-shadow: 0 0 8px var(--primary-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Inner Pages (Contact, Legal)
   ========================================================================== */
.page-hero {
    padding: 12rem 0 6rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--secondary-glow) 0%, transparent 60%);
    opacity: 0.2;
}

/* Contact Form */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.c-info-card {
    background: var(--bg-surface);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.c-info-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.c-info-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pulse-form {
    background: var(--bg-surface);
    padding: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    color: #fff;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-bottom-color: var(--secondary);
}

.form-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 1.1rem;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

/* Legal Pages Content */
.legal-wrapper {
    padding: 6rem 0;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.legal-content h2 {
    color: #fff;
    font-size: 2rem;
    margin: 4rem 0 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {

    .hero-grid,
    .dp-grid,
    .roi-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        height: 400px;
    }

    .services-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .services-grid,
    .testi-grid,
    .footer-grid,
    .dp-stats {
        grid-template-columns: 1fr;
    }

    .process-wrapper::after {
        left: 20px;
    }

    .process-step {
        padding-left: 60px;
    }

    .step-dot {
        left: 10px;
    }

    .roi-controls,
    .roi-output,
    .pulse-form {
        padding: 2rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-input {
        width: 100%;
    }

    .css-grid-chart {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 2rem;
    }
}