:root {
    --primary-yellow: #F4B400;
    --primary-dark: #0A0A0A;
    --secondary-gray: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --accent-gold: #FFD700;
    --gradient-gold: linear-gradient(135deg, #F4B400 0%, #FFD700 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #050505;
    background-image:
        radial-gradient(at 40% 20%, hsla(28, 100%, 74%, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 100px;
}

/* Custom Cursor (Disabled) */
body {
    cursor: default;
}

.cursor {
    display: none;
}

.cursor-follower {
    display: none;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(244, 180, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 180, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Abstract Backgrounds */
.bg-mesh {
    background-color: var(--primary-dark);
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

.bg-mesh::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.05) 0%, transparent 70%);
    animation: pulse 10s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.bg-dots {
    background-color: #0F0F0F;
    background-image: radial-gradient(#2a2a2a 1px, transparent 1px);
    background-size: 30px 30px;
}

.bg-gradient-dark {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #151515 100%);
}

/* MEANINGFUL BRAND GRADIENTS */

/* Hero: "The Dawn" - Represents new beginnings/growth. 
   Dark base with a gold light leak from top-right. */
/* Hero: "Digital Horizon" - Complex, non-solid, rich texture */
/* Hero: "Digital Horizon" - Complex, non-solid, rich texture */
.bg-abstract-hero {
    background-color: #050505;
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(225, 39%, 30%, 1) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Outline Text Utility */
.outline-text {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
}

/* Dark Mode Outline Override (if needed later) */
.bg-abstract-hero .outline-text {
    -webkit-text-stroke: 1.5px #ffffff;
}

.bg-abstract-hero::after {
    /* Overlay gradient for depth */
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #000 90%);
    z-index: 0;
    pointer-events: none;
}

/* Work: "Deep Focus" - Represents depth of engineering.
   Subtle slate/blue tint at the bottom to ground the section. */
.bg-abstract-work {
    background: linear-gradient(180deg, #0A0A0A 0%, #111115 100%);
    position: relative;
}

.bg-abstract-work::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonials: "Flow" - Represents continuous partnership.
   Diagonal movement. */
.bg-abstract-testimonials {
    background: linear-gradient(135deg, #0d0d0d 0%, #151515 100%);
    position: relative;
}

/* CTA: "The Spotlight" - Focus on the action.
   Central radial glow behind the content. */
.bg-abstract-cta {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
}

.bg-abstract-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: #FFFFFF;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.nav-hidden {
    transform: translateY(-100%);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: auto;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--secondary-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-dark);
}

.cta-button {
    padding: 0.8rem 1.8rem;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 5% 4rem;
    /* Reduced top padding from 8rem to 4rem */
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(244, 180, 0, 0.1);
    border: 1px solid rgba(244, 180, 0, 0.3);
    border-radius: 50px;
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2.5rem, 6vw, 3.0rem);
    /* Reduced to ensure SVG "Building Technology" is dominant */
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: #FFFFFF;
    /* Default color for non-span text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-svg-text {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    /* Limit height to prevent huge expansion */
    display: block;
    margin: 0 auto;
    overflow: visible;
}

.svg-text-element {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 110px;
    /* Large base size for SVG coordinate space */
    fill: none;
    stroke: url(#outline-gradient);
    stroke-width: 2px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -5px;
    /* Adjusted to prevent overlap */
    display: block;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary {
    padding: 1.2rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 180, 0, 0.4);
}

.btn-secondary {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-yellow);
    background: rgba(244, 180, 0, 0.1);
    transform: translateY(-3px);
}

/* Trust Indicators */
.trust-badges {
    margin-top: 5rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat:nth-child(1) {
    animation-delay: 1.2s;
}

.stat:nth-child(2) {
    animation-delay: 1.4s;
}

.stat:nth-child(3) {
    animation-delay: 1.6s;
}

.stat:nth-child(4) {
    animation-delay: 1.8s;
}

.stat-number {
    font-family: 'Clash Display', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(244, 180, 0, 0.1);
    border: 1px solid rgba(244, 180, 0, 0.3);
    border-radius: 50px;
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 180, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(244, 180, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li::before {
    content: '⚡';
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

/* Process Section */
.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--primary-yellow) 20%,
            var(--primary-yellow) 80%,
            transparent 100%);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) .step-content {
    order: 2;
}

.process-step:nth-child(even) .step-number {
    order: 1;
}

.step-content {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 180, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.step-content:hover {
    border-color: var(--primary-yellow);
    transform: scale(1.02);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.3);
}

.step-content h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Tech Stack */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-category {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 180, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.tech-category h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(244, 180, 0, 0.1);
    border: 1px solid rgba(244, 180, 0, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(244, 180, 0, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(244, 180, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 1px solid rgba(244, 180, 0, 0.2);
    border-bottom: 1px solid rgba(244, 180, 0, 0.2);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--secondary-gray);
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 180, 0, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

/* Enhanced Service Card Hover */
.service-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* ... existing styles ... */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 40px -10px rgba(244, 180, 0, 0.15);
}

/* Case Studies */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.work-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.work-image {
    height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.work-overlay {
    position: relative;
    z-index: 2;
}

.work-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.work-overlay h3 {
    margin: 0.5rem 0 0;
    font-size: 1.4rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.work-content {
    padding: 1.5rem;
}

.work-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.work-tags span {
    font-size: 0.8rem;
    color: var(--primary-yellow);
    background: rgba(244, 180, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.quote-icon {
    font-family: serif;
    font-size: 4rem;
    color: var(--primary-yellow);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.client-info strong {
    display: block;
    color: var(--primary-yellow);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
    color: var(--primary-yellow);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 300px;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(244, 180, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 80px;
    }

    .process-step:nth-child(even) .step-content {
        order: 1;
    }

    .step-number {
        position: absolute;
        left: 0;
    }

    .services-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

    .trust-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Light Mode Specific Overrides */
.hero.light-mode h1 {
    background: none;
    -webkit-text-fill-color: initial;
    color: #000000;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Blog Page Styles */
.mono-text {
    font-family: 'Courier New', Courier, monospace;
    color: var(--primary-yellow);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(244, 180, 0, 0.1);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-card {
    background: #0F0F0F;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.tech-card:hover::before {
    transform: scaleY(1);
}

.tech-card:hover {
    border-color: #555;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.tech-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #666;
}

.tech-category-tag {
    color: var(--primary-yellow);
    text-transform: uppercase;
}

.tech-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tech-excerpt {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tech-footer {
    border-top: 1px solid #222;
    padding-top: 1rem;
}

.tech-link {
    font-family: 'Courier New', Courier, monospace;
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    transition: margin-left 0.3s ease;
    display: inline-block;
}

.tech-card:hover .tech-link {
    margin-left: 5px;
}