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

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: #818cf8;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --border-color: #e2e8f0;
    --shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    --shadow-hover: 0 20px 60px rgba(99, 102, 241, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.02) 2px,
            rgba(99, 102, 241, 0.02) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.02) 2px,
            rgba(99, 102, 241, 0.02) 4px
        );
    pointer-events: none;
    z-index: 0;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.logo:hover::after {
    width: 120%;
    height: 120%;
    opacity: 0.1;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.2));
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 0;
    height: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.nav-menu a:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

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

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
}

.hero-title span {
    display: block;
    position: relative;
    color: var(--text-primary);
}

.hero-title span {
    display: block;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    animation: expandLine 1.2s ease-out forwards;
    transform-origin: left;
}

.hero-title span:nth-child(1)::after {
    animation-delay: 0.3s;
}

.hero-title span:nth-child(2)::after {
    animation-delay: 0.5s;
}

.hero-title span:nth-child(3)::after {
    animation-delay: 0.7s;
}

@keyframes expandLine {
    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: left 0.4s;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    border-color: var(--primary-light);
}

.btn-secondary:hover::after {
    left: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.x-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(99, 102, 241, 0.03) 50px,
            rgba(99, 102, 241, 0.03) 100px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(99, 102, 241, 0.03) 50px,
            rgba(99, 102, 241, 0.03) 100px
        );
    animation: xPatternMove 20s linear infinite;
}

@keyframes xPatternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseOrb 6s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes pulseOrb {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.9;
    }
}

.x-geometric {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-color);
    opacity: 0.15;
    animation: rotateX 20s linear infinite;
}

.x-geometric::before,
.x-geometric::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: translate(-50%, -50%) rotate(45deg);
}

.x-geometric::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.x-geometric-1 {
    top: 10%;
    right: 10%;
    animation-duration: 25s;
}

.x-geometric-2 {
    bottom: 15%;
    left: 8%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.x-geometric-3 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-duration: 18s;
}

@keyframes rotateX {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.x-svg {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.2;
    pointer-events: none;
}

.x-svg-1 {
    top: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    animation: floatX 15s ease-in-out infinite;
}

.x-svg-2 {
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    animation: floatX 18s ease-in-out infinite reverse;
}

@keyframes floatX {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUpModern 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUpModern {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(99, 102, 241, 0.02) 80px,
            rgba(99, 102, 241, 0.02) 160px
        );
    pointer-events: none;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    color: var(--text-primary);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 0;
    background: rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    border-radius: 8px;
}

.service-card:hover .service-icon::after {
    width: 100px;
    height: 100px;
}

.mono-icon {
    width: 100%;
    height: 100%;
    color: var(--text-primary);
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.1));
    position: relative;
    z-index: 1;
}

.service-card:hover .mono-icon {
    color: var(--primary-color);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.3));
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 28px;
    transition: var(--transition);
}

.service-features li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    transform: rotate(45deg);
    transition: var(--transition);
}

.service-card:hover .service-features li {
    transform: translateX(5px);
    color: var(--text-primary);
}

.service-card:hover .service-features li::before {
    transform: rotate(0deg) scale(1.2);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(99, 102, 241, 0.02) 60px,
            rgba(99, 102, 241, 0.02) 120px
        );
    pointer-events: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    animation: rotateX 30s linear infinite;
}

.mono-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    color: var(--primary-color);
    animation: subtleRotate 30s linear infinite;
    filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.1));
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

@keyframes subtleRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.05);
    }
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 35px;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 25px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 50px;
    margin-top: 70px;
    padding-top: 70px;
    border-top: 2px solid var(--border-color);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: var(--transition);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 0;
    background: rgba(99, 102, 241, 0.05);
    transition: var(--transition);
    border-radius: 8px;
}

.stat-item:hover::before {
    width: 120px;
    height: 120px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 70px,
            rgba(99, 102, 241, 0.02) 70px,
            rgba(99, 102, 241, 0.02) 140px
        );
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.contact-item:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: rotate(45deg) scale(1.1);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    transition: var(--transition);
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group input,
.form-group textarea {
    padding: 18px 22px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(99, 102, 241, 0.05) 50px,
            rgba(99, 102, 241, 0.05) 100px
        );
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, white, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 30px 0;
        border-bottom: 2px solid rgba(99, 102, 241, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 50px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gradient-orb {
        width: 500px;
        height: 500px;
    }

    .x-geometric {
        width: 120px;
        height: 120px;
    }

    .x-svg-1,
    .x-svg-2 {
        width: 250px;
        height: 250px;
        opacity: 0.15;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-graphic {
        order: -1;
    }

    .mono-illustration {
        max-width: 300px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .service-card {
        padding: 35px;
    }

    .contact-form {
        padding: 30px;
    }
}
