/* ================================
   ACENDIR - Neo-Brutalist Tech Design
   ================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #666666;
    --gray-400: #999999;
    --gray-300: #cccccc;

    /* Accent Colors */
    --lime: #c0ff00;
    --cyan: #00ffff;
    --neon-green: #39ff14;
    --electric-blue: #0ff;

    /* Typography */
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --font-code: 'JetBrains Mono', monospace;
    --font-sans: 'Space Grotesk', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(192, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Custom Cursor */
.cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 255, 0, 0.15) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    mix-blend-mode: screen;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(192, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--lime);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-bracket {
    color: var(--lime);
    font-weight: 700;
}

.logo-text {
    color: var(--white);
}

.logo-cursor {
    color: var(--lime);
    animation: blink 1s infinite;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-prefix {
    color: var(--lime);
    font-size: 0.75rem;
}

.nav-menu a:hover {
    color: var(--lime);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 2px solid var(--lime);
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--lime);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--lime);
}

.mobile-menu-toggle:hover span {
    background: var(--black);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 0 80px;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 60px;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease;
}

.tag-bracket {
    color: var(--lime);
}

.tag-text {
    color: var(--cyan);
    margin: 0 0.5rem;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.title-line-accent {
    color: var(--lime);
    text-shadow: 0 0 30px rgba(192, 255, 0, 0.5);
}

.title-line-small {
    font-size: 2.5rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

/* Terminal */
.hero-terminal {
    background: var(--gray-900);
    border: 2px solid var(--gray-700);
    border-radius: 4px;
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease 0.4s backwards;
}

.terminal-header {
    background: var(--gray-800);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.terminal-dot:nth-child(1) {
    background: #ff5f56;
}

.terminal-dot:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dot:nth-child(3) {
    background: #27c93f;
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-left: auto;
}

.terminal-body {
    padding: 1.5rem;
    font-family: var(--font-code);
    font-size: 0.875rem;
    min-height: 60px;
}

.terminal-line {
    color: var(--gray-300);
}

.prompt {
    color: var(--lime);
    margin-right: 0.5rem;
}

.typed-text {
    color: var(--white);
}

.cursor-blink {
    color: var(--lime);
    animation: blink 1s infinite;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease 0.5s backwards;
}

.btn {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--lime);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    border-color: var(--lime);
    color: var(--lime);
}

.btn-primary:hover {
    color: var(--black);
}

.btn-secondary {
    border-color: var(--gray-600);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--lime);
    color: var(--black);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 0.8s ease;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.geometric-shape {
    position: absolute;
    border: 2px solid;
    animation: float 4s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    border-color: var(--lime);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    border-color: var(--cyan);
    top: 50%;
    right: 20%;
    animation-delay: 1s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 80px;
    height: 80px;
    border-color: var(--lime);
    bottom: 15%;
    left: 30%;
    animation-delay: 2s;
    border-radius: 50%;
}

/* Code Window */
.code-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gray-900);
    border: 2px solid var(--gray-700);
    border-radius: 4px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.code-header {
    background: var(--gray-800);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-dots {
    display: flex;
    gap: 0.4rem;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.code-dots span:nth-child(1) {
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27c93f;
}

.code-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-left: auto;
}

.code-content {
    padding: 1.5rem;
    font-family: var(--font-code);
    font-size: 0.8rem;
    line-height: 1.6;
}

.code-content pre {
    margin: 0;
}

.code-keyword {
    color: #ff79c6;
}

.code-class {
    color: var(--cyan);
}

.code-function {
    color: var(--lime);
}

.code-number {
    color: #bd93f9;
}

.code-string {
    color: #f1fa8c;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-800);
    animation: slideInUp 0.8s ease 0.6s backwards;
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime);
    display: block;
    position: relative;
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.metric-divider {
    width: 2px;
    height: 40px;
    background: var(--gray-800);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover::before,
.glitch:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:hover::before {
    animation: glitch-1 0.3s infinite;
    color: var(--cyan);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s infinite;
    color: #ff00ff;
    z-index: -2;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--lime);
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--lime);
    padding: 0.5rem 1rem;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.title-number {
    color: var(--lime);
    font-size: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
}

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

.service-card {
    background: var(--gray-900);
    border: 2px solid var(--gray-800);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: attr(data-index);
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 700;
    color: var(--gray-800);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(192, 255, 0, 0.1);
}

.service-card:hover::before {
    color: var(--lime);
    opacity: 0.1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lime);
}

.service-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

.service-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

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

.service-footer {
    display: flex;
    justify-content: flex-end;
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--lime);
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(10px);
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: var(--black);
    border-left: 2px solid var(--lime);
}

.feature-icon {
    font-family: var(--font-mono);
    color: var(--lime);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-text strong {
    color: var(--white);
    font-weight: 600;
}

.feature-text span {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Stats Container */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.stat-block {
    background: var(--black);
    border: 2px solid var(--gray-800);
    padding: 2rem;
}

.stat-header {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--lime);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-unit {
    color: var(--lime);
    font-size: 1rem;
}

/* Tech Stack */
.tech-stack {
    background: var(--black);
    border: 2px solid var(--gray-800);
    padding: 2rem;
}

.tech-header {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--lime);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-300);
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form-wrapper {
    background: var(--gray-900);
    border: 2px solid var(--gray-800);
}

.form-header {
    background: var(--gray-800);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-700);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-prompt {
    color: var(--lime);
}

.form-path {
    color: var(--gray-400);
}

.contact-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--lime);
    display: block;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 1px var(--lime);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-sans);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: var(--gray-900);
    border: 2px solid var(--gray-800);
    padding: 2rem;
}

.info-header {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--lime);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.info-value {
    font-family: var(--font-mono);
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.info-value:hover {
    color: var(--lime);
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.social-prefix {
    color: var(--lime);
}

.social-link:hover {
    color: var(--lime);
    transform: translateX(5px);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-mono);
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(57, 255, 20, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes glitch-1 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes glitch-2 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(2px, -2px);
    }
    40% {
        transform: translate(2px, 2px);
    }
    60% {
        transform: translate(-2px, -2px);
    }
    80% {
        transform: translate(-2px, 2px);
    }
    100% {
        transform: translate(0);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-line-small {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .stats-container {
        position: static;
    }
}

@media (max-width: 768px) {
    body {
        cursor: default;
    }

    .cursor-glow {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-bottom: 1px solid var(--gray-800);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .mobile-menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-line-small {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .metric-divider {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
        --container-padding: 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-line-small {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .service-card::before {
        font-size: 5rem;
    }
}
