:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --accent: #ff3366;
    --accent-light: #ff6b8a;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --white: #ffffff;
    --gray: #8892b0;
    --gray-light: #ccd6f6;
    --success: #64ffda;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor.active {
    transform: scale(2);
    background: var(--accent);
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    .cursor {
        display: none;
    }

    * {
        cursor: auto !important;
    }
}

/* Hide cursor on all elements for desktop */
@media (min-width: 769px) {
    * {
        cursor: none !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.98);
    padding: 0.5rem 2rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    z-index: 1001;
}

.logo::before {
    content: '{ ';
    color: var(--accent);
}

.logo::after {
    content: ' }';
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    counter-reset: nav-counter;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.nav-links a::before {
    content: counter(nav-counter, decimal-leading-zero) '. ';
    counter-increment: nav-counter;
    color: var(--accent);
    font-size: 0.8rem;
}

.nav-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-toggle:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Mobile Navigation Styles */
@media (max-width: 968px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        counter-reset: nav-counter;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--white);
    }

    .nav-links a:hover {
        color: var(--accent);
        transform: scale(1.1);
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 2rem;
    }

    .navbar .cta-button {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-intro {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-cta .cta-button {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }
}

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

/* Floating Tech Elements */
.tech-grid {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

@media (max-width: 1200px) {
    .tech-grid {
        display: none;
    }
}

.tech-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent);
    background: rgba(255, 51, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.tech-item:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.tech-item:nth-child(2) {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.tech-item:nth-child(3) {
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.tech-item:nth-child(4) {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

.tech-item:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Mobile stats layout */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.1);
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .about {
        padding: 4rem 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-content h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.about-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.tech-item-about {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.tech-item-about::before {
    content: '▶';
    color: var(--accent);
}

.about-visual {
    position: relative;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

@media (max-width: 768px) {
    .about-visual {
        height: 300px;
        padding: 1rem;
    }
}

.code-snippet {
    font-family: 'JetBrains Mono', monospace;
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
    width: 100%;
}

@media (max-width: 576px) {
    .code-snippet {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

.code-line {
    margin-bottom: 0.3rem;
    white-space: pre;
}

.keyword {
    color: #ff6b8a;
}

.string {
    color: #64ffda;
}

.comment {
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 51, 102, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    color: var(--gray);
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (max-width: 968px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--gray);
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
}

.availability {
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.availability h4 {
    color: var(--success);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability h4::before {
    content: '●';
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-label {
    font-family: 'JetBrains Mono', monospace;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.form-input::placeholder {
    color: var(--gray);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Space Grotesk', sans-serif;
}

.submit-button {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    justify-self: start;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .submit-button {
        justify-self: stretch;
        padding: 1rem 2rem;
    }
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
}

/* reCAPTCHA Styling */
.recaptcha-container {
    margin: 2rem 0;
    display: flex;
    justify-content: left;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

@media (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.8);
    }
}

.submit-button:disabled {
    background: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 968px) {
    .footer-main {
        padding: 3rem 1rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        order: -1;
    }
}

.footer-brand {
    max-width: 400px;
}

@media (max-width: 576px) {
    .footer-brand {
        max-width: 100%;
    }
}

.footer-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo::before {
    content: '{ ';
    color: var(--accent);
}

.footer-logo::after {
    content: ' }';
    color: var(--accent);
}

.footer-tagline {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 576px) {
    .footer-links a {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .footer-contact-item {
        justify-content: center;
    }
}

.footer-contact-item i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    background: var(--dark-light);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .footer-bottom {
        padding: 1.5rem 1rem;
    }
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom-left {
    color: var(--gray);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    gap: 2rem;
}

@media (max-width: 576px) {
    .footer-bottom-right {
        gap: 1rem;
    }
}

.footer-bottom-right a {
    color: var(--gray);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.1s ease;
}

/* Mobile optimization */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .hero-cta .cta-button {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.3rem;
    }
}