* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --accent-green: #4ade80;
    --accent-blue: #60a5fa;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.03);
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    /* Slightly increased for readability */
    font-size: 18px;
    padding-top: 80px;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(74, 222, 128, 0.05) 1.4px, transparent 1px),
        linear-gradient(90deg, rgba(74, 222, 128, 0.05) 1.4px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ====== FLOATING ORBS ====== */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 30s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
    top: 60%;
    left: 60%;
    animation-delay: -15s;
    animation-duration: 28s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* ====== FLOATING PARTICLES ====== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: -10s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: -1s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: -3s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: -5s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: -7s;
}

.particle:nth-child(11) {
    left: 45%;
    animation-delay: -9s;
}

.particle:nth-child(12) {
    left: 75%;
    animation-delay: -11s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ====== DATA STREAMS ====== */
.data-streams {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stream {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--accent-green), transparent);
    opacity: 0.3;
    animation: dataStream 8s linear infinite;
}

.stream-1 {
    left: 15%;
    animation-delay: 0s;
}

.stream-2 {
    left: 50%;
    animation-delay: -3s;
}

.stream-3 {
    left: 85%;
    animation-delay: -6s;
}

@keyframes dataStream {
    0% {
        transform: translateY(-150px);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ====== GLOWING SCANNER LINE ====== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    animation: scanLine 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes scanLine {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        transform: translateY(300px);
        opacity: 0.6;
    }
}

/* ====== PREMIUM NOISE TEXTURE OVERLAY ====== */
.grid-background::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* ====== CIRCUIT PATTERN ACCENT ====== */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(74, 222, 128, 0.1) 49.5%, rgba(74, 222, 128, 0.1) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(74, 222, 128, 0.1) 49.5%, rgba(74, 222, 128, 0.1) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 80% 80% at 100% 100%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 100% 100%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    border-bottom: 1px solid var(--border-color);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    height: 80px;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
}


.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}


.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Details Actionable Links */
.contact-value.highlight-link {
    transition: color 0.3s;
}

.contact-value.highlight-link:hover {
    color: var(--accent-green) !important;
}

.contact-btn {
    background: var(--text-primary) !important;
    color: var(--bg-dark) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0 120px;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

/* ====== PREMIUM HERO GRAPHICS ====== */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Main gradient mesh background */
.hero-gradient-mesh {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 120%;
    background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(74, 222, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 30% 70%, rgba(96, 165, 250, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    filter: blur(40px);
    animation: meshFloat 15s ease-in-out infinite;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -20px) rotate(2deg);
    }

    66% {
        transform: translate(-10px, 15px) rotate(-1deg);
    }
}

/* Geometric accent lines */
.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0.3;
}

.hero-line-1 {
    top: 20%;
    left: 0;
    width: 40%;
    height: 1px;
    animation: lineSlide 8s ease-in-out infinite;
}

.hero-line-2 {
    top: 60%;
    right: 0;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: lineSlide 10s ease-in-out infinite reverse;
}

.hero-line-3 {
    bottom: 25%;
    left: 10%;
    width: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    animation: lineSlide 12s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes lineSlide {

    0%,
    100% {
        opacity: 0.2;
        transform: translateX(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(30px);
    }
}

/* Glow spots */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-glow-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Corner accent - geometric shape */
.hero-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Ensure hero content is above graphics */
.hero-content,
.consultation-form {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-family: var(--font-main);
    animation: heroTextFade 1s ease-out;
}

/* Highlight text in hero */
.hero-content h1 .highlight {
    color: var(--accent-green);
    position: relative;
}

@keyframes heroTextFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 560px;
    animation: heroTextFade 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: heroTextFade 1s ease-out 0.4s both;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 16px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    border: 2px solid var(--text-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.25),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    padding: 16px 38px;
    border: 2px solid var(--accent-green);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.15);
}

.services-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 18px;
    margin-top: 50px;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-tag::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Consultation Form */
.consultation-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 50px;
    border-radius: 20px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(74, 222, 128, 0.1),
        0 0 80px rgba(74, 222, 128, 0.05);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border for the form */
.consultation-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            var(--accent-green),
            var(--accent-blue),
            #a855f7,
            var(--accent-green));
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    animation: formBorderGlow 6s ease infinite;
    opacity: 0.5;
}

@keyframes formBorderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.consultation-form h2 {
    font-size: 26px;
    color: var(--bg-dark);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-main);
}

.consultation-form .subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-main);
    transition: all 0.3s;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bg-dark);
    box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--bg-dark);
    color: var(--text-primary);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-family: var(--font-main);
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    position: relative;
    animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(74, 222, 128, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
    }
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-family: var(--font-main);
    position: relative;
    display: inline-block;
}

/* Subtle underline accent */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    border-radius: 2px;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Animated gradient border glow */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--accent-green),
            var(--accent-blue),
            #a855f7,
            var(--accent-green));
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: gradientShift 3s linear infinite paused;
}

.service-card:hover::before {
    transform: scaleX(1);
    animation-play-state: running;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* Glow effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(74, 222, 128, 0.1);
}

/* Staggered animation on scroll */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-main);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    padding: 10px 0;
    color: var(--text-tertiary);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li::before {
    content: '→';
    color: var(--accent-green);
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

/* Connecting line between steps */
.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--accent-green),
            var(--accent-blue),
            #a855f7);
    z-index: 0;
    opacity: 0.5;
}

/* Animated glow on the connecting line */
.steps-container::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 15%;
    width: 70%;
    height: 6px;
    background: linear-gradient(90deg,
            transparent,
            rgba(74, 222, 128, 0.5),
            transparent);
    filter: blur(4px);
    animation: lineGlow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-10%);
    }

    50% {
        opacity: 0.8;
        transform: translateX(10%);
    }
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 30px;
    font-family: var(--font-main);
    color: var(--accent-green);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

/* Pulse ring animation */
.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.step:nth-child(1) .step-number::before {
    animation-delay: 0s;
}

.step:nth-child(2) .step-number::before {
    animation-delay: 0.5s;
}

.step:nth-child(3) .step-number::before {
    animation-delay: 1s;
}

.step:nth-child(4) .step-number::before {
    animation-delay: 1.5s;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step:hover .step-number {
    background: var(--accent-green);
    color: var(--bg-dark);
    transform: scale(1.15);
    border-color: var(--accent-green);
    box-shadow:
        0 0 30px rgba(74, 222, 128, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.step:hover .step-number::before {
    animation: none;
}

.step h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-main);
}

.step p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
}

/* Evidence Types */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.evidence-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient line on left */
.evidence-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-green), var(--accent-blue));
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.evidence-card:hover::before {
    height: 100%;
}

.evidence-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.evidence-icon {
    font-size: 40px;
    flex-shrink: 0;
    transition: transform 0.4s;
}

.evidence-card:hover .evidence-icon {
    transform: scale(1.2) rotate(5deg);
}

.evidence-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.evidence-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ====== EVIDENCE TYPES SLIDER WITH HACKING ANIMATIONS ====== */

/* Cyber Scanner */
.cyber-scanner {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 40px;
    overflow: hidden;
}

.scanner-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-green) 20%,
            var(--accent-blue) 50%,
            var(--accent-green) 80%,
            transparent 100%);
    transform: translateY(-50%);
    animation: scannerMove 3s ease-in-out infinite;
}

.scanner-line::before,
.scanner-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--accent-green), 0 0 40px var(--accent-green);
}

.scanner-line::before {
    left: 0;
    animation: scannerDot 3s ease-in-out infinite;
}

.scanner-line::after {
    right: 0;
    animation: scannerDot 3s ease-in-out infinite reverse;
}

@keyframes scannerMove {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scannerDot {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.5);
    }
}

/* Evidence Slider Container */
.evidence-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.evidence-slider-track {
    display: flex;
    gap: 30px;
    animation: slideTrack 20s linear infinite;
    width: fit-content;
}

.evidence-slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual Slide */
.evidence-slide {
    flex-shrink: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Scanning overlay effect */
.evidence-slide::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(74, 222, 128, 0.1),
            transparent);
    animation: slideScanner 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes slideScanner {

    0%,
    100% {
        top: -100%;
    }

    50% {
        top: 100%;
    }
}

/* Corner accent */
.evidence-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--accent-green);
    border-right: 2px solid var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.evidence-slide:hover::after {
    opacity: 1;
}

.evidence-slide:hover {
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(74, 222, 128, 0.1);
}

/* Slide Icon Wrapper */
.slide-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.slide-icon {
    font-size: 36px;
    position: relative;
    z-index: 2;
}

/* Spinning Cyber Ring */
.cyber-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    animation: cyberRingSpin 8s linear infinite;
}

.evidence-slide:hover .cyber-ring {
    border-color: var(--accent-green);
    animation-duration: 2s;
}

@keyframes cyberRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Glitch Text Effect */
.glitch-text {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-mono);
    margin-bottom: 12px;
    position: relative;
    color: var(--text-primary);

}

.evidence-slide:hover .glitch-text {
    animation: glitchText 0.3s ease-in-out;

    font-family: var(--font-mono);
}

@keyframes glitchText {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-2px);
        color: #ff0040;
    }

    40% {
        transform: translateX(2px);
        color: #00ff9f;
    }

    60% {
        transform: translateX(-1px);
        color: #0090ff;
    }

    80% {
        transform: translateX(1px);
        color: var(--accent-green);
    }
}

.evidence-slide p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Hex Code Display */
.slide-hex-code {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-green);
    opacity: 0.5;
    letter-spacing: 1px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    transition: opacity 0.3s;

}

.evidence-slide:hover .slide-hex-code {
    opacity: 1;
    animation: hexFlicker 0.5s ease-in-out;

    font-family: var(--font-mono);
}

@keyframes hexFlicker {

    0%,
    100% {
        opacity: 1;
    }

    25% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }

    75% {
        opacity: 0.5;
    }
}

/* Slider Fade Edges */
.slider-fade {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.slider-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.slider-fade-right {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark), transparent);
}

/* ====== LINUX TERMINAL - USE CASES ====== */

.linux-terminal {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);

    font-family: var(--font-mono);
}

/* Terminal Title Bar */
.terminal-titlebar {
    background: linear-gradient(180deg, #3d3d5c, #2d2d44);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.term-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.term-btn.close {
    background: #ff5f57;
}

.term-btn.minimize {
    background: #ffbd2e;
}

.term-btn.maximize {
    background: #28c840;
}

.term-btn:hover {
    transform: scale(1.2);
}

.terminal-title-text {
    font-family: var(--font-mono);
    font-size: 18px;
    color: #a0a0a0;
    flex: 1;

}

.terminal-menu {
    display: flex;
    gap: 22px;
    font-family: var(--font-main);
    font-size: 12px;
    color: #666;
}

.terminal-menu span:hover {
    color: var(--accent-green);
    cursor: pointer;
}

/* Terminal Body */
.terminal-body {
    background: #0d0d1a;
    padding: 25px;
    max-height: 600px;
    overflow-y: auto;
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.8;
}

/* Custom Scrollbar */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #1a1a2e;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

/* Terminal Lines */
.terminal-line {
    margin-bottom: 5px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    gap: 5px;

    font-family: var(--font-mono);
}

.terminal-line::-webkit-scrollbar {
    display: none;
}

.prompt {
    color: #ff6b6b;
    font-weight: bold;
}

.prompt-sep {
    color: #ffffff;
}

.path {
    color: #4ecdc4;
}

.dollar {
    color: #ffe66d;
    margin-left: 2px;
}

.command {
    color: #ffffff;
    margin-left: 10px;
}

/* Terminal Output */
.terminal-output {
    margin: 10px 0 25px 0;
    padding: 15px;
    background: rgba(74, 222, 128, 0.05);
    border-left: 3px solid var(--accent-green);
    border-radius: 0 8px 8px 0;

    font-family: var(--font-mono);
}

.output-header,
.output-footer {
    color: #4a5568;
    font-size: 12px;
    letter-spacing: 1px;
}

.output-title {
    color: var(--accent-green);
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.output-desc {
    color: #a0aec0;
    font-size: 18px;
    margin-bottom: 15px;
}

.output-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-item {
    color: #e2e8f0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet {
    color: var(--accent-green);
}

.file-perm {
    color: #ffd93d;
    font-size: 16px;
    min-width: 100px;
}

.file-list .list-item {
    color: #90cdf4;
}

.output-status {
    margin-top: 15px;
    color: #48bb78;
    font-size: 16px;
    padding: 8px 12px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 4px;
    display: inline-block;
}

/* Blinking Cursor */
.typing-cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent-green);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.active-line {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(74, 222, 128, 0.2);
}

/* Scan line effect on terminal */
.linux-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 1;
}

/* Why Choose Us - Security Dashboard */
.features-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-module {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-green);
    opacity: 0.3;
}

.feature-module:hover {
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 222, 128, 0.1);
}

.module-status {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-green);
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;

}

.module-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.feature-module .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 0 20px 0;
    transition: all 0.4s;
    text-align: left;
}

.feature-module:hover .feature-icon {
    background: rgba(74, 222, 128, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.feature-module h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-primary);
}

.feature-module p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.module-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-main);
    font-size: 10px;
    color: #666;
}

.diagnostic {
    color: var(--accent-green);
    font-weight: bold;

    font-family: var(--font-mono);
}

/* Sample Findings - Evidence Showcase */
.evidence-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    animation: showcaseSlide 12s linear infinite;
    gap: 35px;
}

.showcase-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 100%;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showcase-media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-darker);
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.showcase-card:hover .showcase-media img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.overlay-badge {
    background: rgba(74, 222, 128, 0.9);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(30, 30, 30, 0.8));
}

.video-placeholder img {
    opacity: 0.4;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    padding-left: 6px;
}

.showcase-card:hover .play-button {
    transform: scale(1.1);
    background: var(--accent-green);
}

.audio-waves {
    position: absolute;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.audio-waves span {
    width: 6px;
    background: var(--accent-green);
    border-radius: 3px;
    animation: audioWave 1.2s ease-in-out infinite;
}

.audio-waves span:nth-child(1) {
    height: 30px;
    animation-delay: 0s;
}

.audio-waves span:nth-child(2) {
    height: 50px;
    animation-delay: 0.1s;
}

.audio-waves span:nth-child(3) {
    height: 40px;
    animation-delay: 0.2s;
}

.audio-waves span:nth-child(4) {
    height: 60px;
    animation-delay: 0.3s;
}

.audio-waves span:nth-child(5) {
    height: 35px;
    animation-delay: 0.4s;
}

.audio-waves span:nth-child(6) {
    height: 55px;
    animation-delay: 0.5s;
}

.audio-waves span:nth-child(7) {
    height: 45px;
    animation-delay: 0.6s;
}

.audio-waves span:nth-child(8) {
    height: 38px;
    animation-delay: 0.7s;
}

.audio-waves span:nth-child(9) {
    height: 52px;
    animation-delay: 0.8s;
}

.audio-waves span:nth-child(10) {
    height: 42px;
    animation-delay: 0.9s;
}

@keyframes audioWave {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}

.showcase-content {
    padding: 35px;
}

.case-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.1);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.showcase-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-primary);
}

.case-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.evidence-findings {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.finding-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.finding-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.finding-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finding-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.highlight-text {
    color: var(--accent-green);
    font-weight: 600;
}

/* Showcase Cards for Carousel */
.showcase-card {
    flex-shrink: 0;
    width: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(74, 222, 128, 0.1);
}

/* ====== TERMINAL HEADER & CAROUSEL FOR SAMPLE ANALYSIS ====== */

/* Terminal Header */
.terminal-header {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px 12px 0 0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots .dot.red {
    background: #ff5f57;
}

.terminal-dots .dot.yellow {
    background: #ffbd2e;
}

.terminal-dots .dot.green {
    background: #28c840;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(40, 200, 64, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(40, 200, 64, 0.8);
    }
}

.terminal-title {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--accent-green);
}

.terminal-typing {
    display: flex;
    align-items: center;
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-secondary);
}

.typing-text {
    animation: typeReveal 3s steps(20) infinite;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

@keyframes typeReveal {

    0%,
    10% {
        width: 0;
    }

    50%,
    90% {
        width: 170px;
    }

    100% {
        width: 0;
    }
}

.cursor {
    color: var(--accent-green);
    animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Carousel Container */
.showcase-carousel {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 40px;
    overflow: hidden;
}

/* Data Stream Animation */
.carousel-data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(74, 222, 128, 0.03) 2px,
            rgba(74, 222, 128, 0.03) 4px);
    pointer-events: none;
    animation: dataStreamMove 20s linear infinite;
    z-index: 0;
}

@keyframes dataStreamMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100px;
    }
}

/* Carousel Track */
.showcase-carousel-track {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.evidence-showcase-grid {
    display: flex;
    gap: 30px;
    width: fit-content;
}

.evidence-showcase-grid:hover {
    animation-play-state: paused;
}

@keyframes showcaseSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    color: var(--accent-green);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-nav:hover {
    background: var(--accent-green);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.indicator {
    width: 40px;
    height: 4px;
    background: var(--border-color);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.indicator:hover::before,
.indicator.active::before {
    transform: scaleX(1);
}

.indicator.active {
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* Testimonials - Horizontal Auto-Scroll */
.testimonials-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: fit-content;
    padding: 20px 0;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials - Enhanced Modern Design */
.testimonial {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 320px;
    max-width: 320px;
    height: auto;
    /* Fixed extra space issue */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 100px;
    font-family: var(--font-main);
    color: var(--accent-green);
    opacity: 0.1;
    pointer-events: none;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(74, 222, 128, 0.1);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: normal;
    font-family: var(--font-main);
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary);
    font-family: var(--font-main);
}

.author-info p {
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 500;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-green);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    padding-right: 40px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* enough for answer */
    opacity: 1;
    margin-top: 12px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

/* Floating Call Button - Base styles moved to bottom */

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(96, 165, 250, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: var(--font-main);
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-center {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Footer Contact Section */
.footer-contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-form-container .consultation-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    background: transparent;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: var(--font-main);
}

.contact-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.what-happens-next {
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    background: rgba(74, 222, 128, 0.03);
}

.what-happens-next h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-primary);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.next-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.next-steps li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--accent-green);
    font-size: 16px;
    font-family: var(--font-main);
}

.form-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: -15px;
    margin-bottom: 15px;
}

.form-consent {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.inline-cta {
    padding: 70px 0;
    text-align: center;
}

.inline-cta-heading {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.inline-cta-text {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.inline-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

/* Primary */
.cta-btn.primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

/* Secondary */
.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cta-btn.secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid,
    .use-cases-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Adjust container padding */
    .container {
        padding: 0 20px !important;
    }

    /* Keep nav visible */
    nav {
        padding: 0 !important;
        display: block !important;
    }

    nav .container {
        padding: 15px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    /* Hide everything except logo */
    nav .contact-btn,
    nav button {
        display: none !important;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex !important;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 2001;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--text-primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Logo stays */
    .logo {
        font-size: 16px !important;
        margin: 0 !important;
    }

    /* Fix evidence + footer shifting right */
    .footer-contact-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }


    /* Cards must not exceed screen */
    .footer-form-container,
    .contact-info-card,
    .what-happens-next {
        width: 100% !important;
        max-width: 100% !important;
    }


    /* Typography adjustments */
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: clamp(18px, 6.5vw, 26px) !important;
        white-space: nowrap !important;
    }

    .section {
        padding: 60px 0;
    }

    .video-wrapper {
        border-radius: 12px;
    }

    .partners-container {
        padding: 40px 0 !important;
    }

    .partners-track {
        gap: 0px !important;
    }

    .partner-logo {
        height: 40px !important;
    }

    .video-section {
        padding: 60px 0 !important;
    }

    .video-header h2 {
        font-size: 36px !important;
    }

    .video-header p {
        font-size: 16px !important;
    }

    /* Testimonials mobile adjustment */
    .testimonial {
        min-width: 225px !important;
        max-width: 225px !important;
        height: 400px !important;
        padding: 25px !important;
    }

    .testimonial-quote {
        font-size: 13px !important;
        -webkit-line-clamp: 7 !important;
        line-clamp: 7 !important;
    }

    /* Sample Findings */
    .showcase-media {
        height: 220px;
    }

    .showcase-content {
        padding: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .cta-buttons,
    .cta-buttons-center {
        flex-direction: column;
    }

    /* Contact cards */
    .contact-info-card,
    .what-happens-next {
        padding: 30px;
    }

    /* MOBILE FORM ADJUSTMENTS - Both Hero and Footer Forms */
    .consultation-form {
        padding: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-contact-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        gap: 30px !important;
    }

    .footer-form-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    .footer-form-container .consultation-form {
        padding: 15px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        box-shadow: none !important;
        border-radius: 12px !important;
    }

    .consultation-form h2 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }

    .consultation-form .subtitle {
        font-size: 11px !important;
        margin-bottom: 15px !important;
    }

    .form-group {
        margin-bottom: 10px !important;
    }

    .form-group label {
        font-size: 9px !important;
        margin-bottom: 5px !important;
    }

    .form-group input,
    .form-group textarea {
        padding: 9px 12px !important;
        font-size: 13px !important;
    }

    .form-group textarea {
        min-height: 60px !important;
    }

    .submit-btn {
        padding: 10px !important;
        font-size: 12px !important;
    }

    .form-disclaimer {
        font-size: 9px !important;
        margin-top: -8px !important;
        margin-bottom: 8px !important;
    }

    .form-consent {
        font-size: 9px !important;
        margin-bottom: 10px !important;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for child elements */
.fade-in.visible .service-card,
.fade-in.visible .use-case,
.fade-in.visible .evidence-card,
.fade-in.visible .feature,
.fade-in.visible .showcase-card {
    opacity: 0;
    animation: staggerFadeIn 0.6s ease forwards;
}

.fade-in.visible .service-card:nth-child(1),
.fade-in.visible .use-case:nth-child(1),
.fade-in.visible .evidence-card:nth-child(1),
.fade-in.visible .feature:nth-child(1),
.fade-in.visible .showcase-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in.visible .service-card:nth-child(2),
.fade-in.visible .use-case:nth-child(2),
.fade-in.visible .evidence-card:nth-child(2),
.fade-in.visible .feature:nth-child(2),
.fade-in.visible .showcase-card:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in.visible .service-card:nth-child(3),
.fade-in.visible .use-case:nth-child(3),
.fade-in.visible .evidence-card:nth-child(3),
.fade-in.visible .feature:nth-child(3),
.fade-in.visible .showcase-card:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in.visible .service-card:nth-child(4),
.fade-in.visible .use-case:nth-child(4),
.fade-in.visible .evidence-card:nth-child(4),
.fade-in.visible .feature:nth-child(4),
.fade-in.visible .showcase-card:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in.visible .service-card:nth-child(5),
.fade-in.visible .use-case:nth-child(5),
.fade-in.visible .evidence-card:nth-child(5),
.fade-in.visible .feature:nth-child(5) {
    animation-delay: 0.4s;
}

.fade-in.visible .service-card:nth-child(6),
.fade-in.visible .use-case:nth-child(6),
.fade-in.visible .evidence-card:nth-child(6),
.fade-in.visible .feature:nth-child(6) {
    animation-delay: 0.4s;
}

@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 18px;

    width: calc(100% - 32px);
    max-width: 306px;

    padding: 14px 22px 14px 18px;
    background: #22c55e;
    color: white;

    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;

    display: none;
    /* desktop default */
    align-items: center;
    justify-content: center;

    text-decoration: none;
    z-index: 9999;
}


.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow:
        0 15px 40px rgba(34, 197, 94, 0.5),
        0 0 30px rgba(34, 197, 94, 0.4);
}

@keyframes callBtnPulse {

    0%,
    100% {
        box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35), 0 0 20px rgba(34, 197, 94, 0.2);
    }

    50% {
        box-shadow: 0 12px 40px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.4);
    }
}

@media (max-width: 768px) {

    /* Evidence Carousel Container */
    .showcase-carousel {
        padding: 0 !important;
        margin-left: -20px;
        margin-right: -20px;
        width: 100vw;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        overflow: hidden !important;
    }

    /* Carousel Track */
    .evidence-showcase-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 20px !important;
        animation: none !important;
        transform: none !important;
    }

    .evidence-showcase-grid .showcase-card:nth-child(n+5) {
        display: none !important;
    }

    /* Compact Cards */
    .showcase-card {
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .showcase-media {
        height: 140px !important;
    }

    .showcase-content {
        padding: 15px 25px !important;
    }

    .case-description {
        margin-bottom: 12px !important;
    }

    .evidence-findings {
        gap: 15px !important;
    }

    .finding-item {
        gap: 18px !important;
    }

    .finding-item p {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
    }

    .video-header h2,
    .video-header p {
        display: none !important;
    }

    .video-section {
        display: none !important;
    }


    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .section-description {
        font-size: 15px !important;
        line-height: 1.55 !important;
        padding: 0 5px;
    }

    .service-card,
    .evidence-card,
    .feature-module {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    .evidence-slide {
        width: 80vw !important;
        max-width: 300px !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    .service-icon,
    .evidence-icon {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .service-card h3,
    .evidence-content h3,
    .feature-module h3,
    .step h3 {
        font-size: 22px !important;
        margin-bottom: 12px !important;
        word-wrap: break-word !important;
    }

    .service-card p,
    .evidence-content p,
    .feature-module p,
    .step p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .service-list li {
        font-size: 14px !important;
        padding: 6px 0 !important;
    }

    .footer-contact-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0 !important;
        /* breathing room */
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        /* key line */
    }

    .features-dashboard {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-module {
        width: 100% !important;
    }

    .footer-form-container,
    .footer-contact-info {
        width: 100% !important;
        max-width: 100% !important;
        /* control visual width */
        margin: 0 auto !important;
    }

    .inline-cta-heading {
        font-size: 26px;
    }

    .inline-cta-text {
        font-size: 16px;
    }

    .inline-cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        padding: 10px 22px !important;
        font-size: 13px !important;
        border-radius: 40px !important;
        width: 100%;
        max-width: 280px;
    }

    .floating-call-btn {
        display: flex !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 30px !important;
        width: fit-content !important;
        min-width: 280px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .floating-call-btn:hover,
    .floating-call-btn:focus,
    .floating-call-btn:active {
        transform: translateX(-50%) scale(1.05) !important;
        box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4) !important;
    }
}

/* Custom hero text styling for high-tech look */
.hero-desc-box {
    margin-bottom: 45px;
    animation: heroTextFade 1s ease-out 0.2s both;
}

.hero-desc-box .desc-label {
    display: none;
    /* Hide on desktop for baseline */
}

.hero-desc-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 560px;
}

.hero-desc-box p strong {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-desc-box {
        background: rgba(20, 20, 20, 0.7);
        border: 1px solid rgba(74, 222, 128, 0.15);
        border-left: 3px solid var(--accent-green);
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 35px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(74, 222, 128, 0.05);
        backdrop-filter: blur(8px);
    }

    .hero-desc-box .desc-label {
        display: flex;
        font-family: var(--font-mono);
        font-size: 10.5px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--accent-green);
        margin-bottom: 12px;
        align-items: center;
        gap: 8px;
    }

    .hero-desc-box .blink-dot {
        width: 6px;
        height: 6px;
        background-color: var(--accent-green);
        border-radius: 50%;
        animation: blink 2s infinite;
        box-shadow: 0 0 8px var(--accent-green);
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    .hero-desc-box p {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        margin-bottom: 0 !important;
    }

    .hero-desc-box p strong {
        color: #fff;
        font-weight: 600;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        display: block;
    }
}

/* ====== INLINE CTA SECTION ====== */
.inline-cta {
    text-align: center;
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(74, 222, 128, 0.03), transparent);
}

.inline-cta-heading {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.inline-cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inline-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-btn {
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .inline-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .cta-btn {
        width: 100%;
    }

    .inline-cta-heading {
        font-size: 32px;
    }
}

/* ====== MOBILE PERFORMANCE OVERRIDES ====== */
@media (max-width: 768px) {

    /* Disable heavy blur rendering and GPU draining animations */
    .floating-orbs,
    .particles,
    .data-streams,
    .hero-graphics,
    .grid-background::after,
    .cyber-scanner,
    .hero::before,
    .hero::after {
        display: none !important;
        animation: none !important;
    }

    /* Simplify background to reduce repaints */
    .grid-background {
        animation: none !important;
        background-image: none !important;
        background-color: var(--bg-dark) !important;
    }

    /* Reduce form border glow animation to static or flat shadow */
    .consultation-form::before {
        animation: none !important;
        background-image: none !important;
        background-color: var(--accent-green) !important;
        opacity: 0.2 !important;
    }

    /* Prevent text glitches from constantly recalculating layout */
    .glitch-text::before,
    .glitch-text::after {
        display: none !important;
        animation: none !important;
    }

    /* Overall performance catch for all rogue infinite animations eating battery */
    .orb,
    .particle,
    .stream,
    .hero-line,
    .hero-glow {
        animation: none !important;
        display: none !important;
    }
}