/* Premium Audio Dubbing Website - Ultra Modern Design */

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

:root {
    --primary-blue: #2151fc;
    --blue-dark: #0d3cc4;
    --blue-light: #4a6ffd;
    --blue-glow: rgba(33, 81, 252, 0.4);
    --accent-cyan: #00d4ff;
    --accent-purple: #7c3aed;
    --text-dark: #0a0e27;
    --text-gray: #64748b;
    --text-light: #f1f5f9;
    --bg-dark: #0a0e27;
    --bg-darker: #050814;
    --bg-gradient: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--bg-darker);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Minimalist Fixed Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 20px 0;
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 20px var(--blue-glow));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 30px var(--blue-glow));
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: rgba(241, 245, 249, 0.7);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--blue-glow);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 10;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Immersive Full-Screen Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(33, 81, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 140px 40px 80px;
}

.hero-content {
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -3px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 56px;
    font-weight: 400;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-visualizer {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
    align-items: flex-end;
    width: 100%;
    height: 500px;
    padding: 60px 40px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.audio-visualizer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(33, 81, 252, 0.03) 2px,
            rgba(33, 81, 252, 0.03) 4px
        );
    pointer-events: none;
}

.audio-visualizer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(33, 81, 252, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.wave {
    width: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 8px 8px 0 0;
    animation: wave 2s ease-in-out infinite;
    box-shadow: 
        0 -8px 24px rgba(33, 81, 252, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 8px 8px 0 0;
}

.wave-1 { height: 80px; animation-delay: 0s; }
.wave-2 { height: 140px; animation-delay: 0.1s; }
.wave-3 { height: 200px; animation-delay: 0.2s; }
.wave-4 { height: 260px; animation-delay: 0.3s; }
.wave-5 { height: 320px; animation-delay: 0.4s; }
.wave-6 { height: 280px; animation-delay: 0.25s; }
.wave-7 { height: 220px; animation-delay: 0.15s; }
.wave-8 { height: 160px; animation-delay: 0.05s; }
.wave-9 { height: 100px; animation-delay: 0.35s; }

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.4);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Premium Button Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 
        0 10px 40px rgba(33, 81, 252, 0.4),
        0 0 0 0 rgba(33, 81, 252, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary::after {
    content: '→';
    position: relative;
    z-index: 2;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.btn-primary:hover::after {
    transform: translateX(6px);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(33, 81, 252, 0.5),
        0 0 0 4px rgba(33, 81, 252, 0.2);
}

.btn-secondary {
    background: var(--glass);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(33, 81, 252, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(33, 81, 252, 0.3);
}

.btn-large {
    padding: 24px 56px;
    font-size: 18px;
}

/* Section Styling */
section {
    padding: 140px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(241, 245, 249, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

/* Glassmorphism Features */
.features {
    background: var(--bg-darker);
    position: relative;
    padding: 160px 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 81, 252, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 81, 252, 0.3);
    box-shadow: 
        0 20px 60px rgba(33, 81, 252, 0.2),
        0 0 0 1px rgba(33, 81, 252, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(33, 81, 252, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(33, 81, 252, 0.5);
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(241, 245, 249, 0.7);
    line-height: 1.9;
    font-size: 17px;
    position: relative;
    z-index: 2;
}

/* Premium Services Grid */
.services-preview {
    background: var(--bg-dark);
    padding: 160px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 81, 252, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(33, 81, 252, 0.4);
    box-shadow: 
        0 24px 80px rgba(33, 81, 252, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 32px;
    line-height: 2;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
}

.service-link::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 20px;
    color: var(--accent-cyan);
}

.service-link:hover::after {
    transform: translateX(8px);
}

/* Services Detail - Premium Layout */
.services-detail {
    background: var(--bg-darker);
    padding: 160px 0;
}

.service-detail-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 80px 70px;
    margin-bottom: 60px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:hover {
    transform: translateX(8px);
    border-color: rgba(33, 81, 252, 0.3);
    box-shadow: 
        0 20px 60px rgba(33, 81, 252, 0.2),
        0 0 0 1px rgba(33, 81, 252, 0.1);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 12px 40px rgba(33, 81, 252, 0.4);
    transition: all 0.4s ease;
}

.service-icon-large svg {
    width: 48px;
    height: 48px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.service-detail-card:hover .service-icon-large {
    transform: rotate(-5deg) scale(1.1);
}

.service-detail-card h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
}

.service-detail-card p {
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 32px;
    line-height: 2;
    font-size: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-features li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    color: rgba(241, 245, 249, 0.9);
    font-size: 18px;
    font-weight: 500;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Process - Modern Timeline */
.process {
    background: var(--bg-dark);
    padding: 160px 0;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 80px 0;
    gap: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-blue) 20%,
        var(--accent-cyan) 50%,
        var(--primary-blue) 80%,
        transparent 100%
    );
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 20px;
}

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 3px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    margin: 0 auto 32px;
    box-shadow: 
        0 12px 40px rgba(33, 81, 252, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'JetBrains Mono', monospace;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border-color: var(--accent-cyan);
    box-shadow: 
        0 20px 60px rgba(33, 81, 252, 0.5),
        0 0 0 8px rgba(33, 81, 252, 0.1);
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.process-step h3 {
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.process-step p {
    color: rgba(241, 245, 249, 0.7);
    line-height: 1.9;
    font-size: 17px;
}

/* Page Header - Immersive */
.page-header {
    background: var(--bg-gradient);
    color: white;
    padding: 200px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(33, 81, 252, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -3px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: clamp(18px, 2.5vw, 24px);
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: rgba(241, 245, 249, 0.8);
}

/* About - Premium Layout */
.about-content {
    background: var(--bg-darker);
    padding: 160px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
    align-items: start;
}

.about-text {
    padding-right: 60px;
}

.about-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 32px;
    color: var(--text-light);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
}

.about-text h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -1px;
}

.about-text p {
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 24px;
    line-height: 2;
    font-size: 19px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: sticky;
    top: 140px;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    color: white;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 81, 252, 0.4);
    box-shadow: 
        0 20px 60px rgba(33, 81, 252, 0.3),
        0 0 0 1px rgba(33, 81, 252, 0.1);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(241, 245, 249, 0.9);
}

/* Values */
.values {
    background: var(--bg-dark);
    padding: 160px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 81, 252, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 81, 252, 0.4);
    box-shadow: 
        0 20px 60px rgba(33, 81, 252, 0.25),
        0 0 0 1px rgba(33, 81, 252, 0.1);
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -1px;
}

.value-card p {
    color: rgba(241, 245, 249, 0.7);
    line-height: 2;
    font-size: 17px;
}

/* Portfolio - Premium Grid */
.portfolio {
    background: var(--bg-darker);
    padding: 160px 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    color: rgba(241, 245, 249, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: scaleX(1);
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(33, 81, 252, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.portfolio-item {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 81, 252, 0.2), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(33, 81, 252, 0.4);
    box-shadow: 
        0 24px 80px rgba(33, 81, 252, 0.3),
        0 0 0 1px rgba(33, 81, 252, 0.1);
}

.portfolio-image {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.05) 20px,
            rgba(255, 255, 255, 0.05) 40px
        );
    animation: slide 20s linear infinite;
}

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

.portfolio-placeholder {
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.portfolio-info {
    padding: 32px;
    background: rgba(10, 14, 39, 0.5);
    position: relative;
    z-index: 2;
}

.portfolio-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -1px;
}

.portfolio-info p {
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(33, 81, 252, 0.2);
    border: 1px solid rgba(33, 81, 252, 0.3);
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

/* Testimonials - Premium Cards */
.testimonials {
    background: var(--bg-dark);
    padding: 160px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 120px;
    color: rgba(33, 81, 252, 0.1);
    font-weight: 900;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 81, 252, 0.4);
    box-shadow: 
        0 20px 60px rgba(33, 81, 252, 0.25),
        0 0 0 1px rgba(33, 81, 252, 0.1);
}

.testimonial-content {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-style: italic;
    color: rgba(241, 245, 249, 0.9);
    line-height: 2;
    font-size: 18px;
    font-weight: 400;
}

.testimonial-author strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 800;
    font-size: 18px;
}

.testimonial-author span {
    color: rgba(241, 245, 249, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact - Premium Form */
.contact {
    background: var(--bg-darker);
    padding: 160px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(33, 81, 252, 0.02) 40px,
            rgba(33, 81, 252, 0.02) 80px
        );
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
}

.contact-info > p {
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 48px;
    line-height: 2;
    font-size: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateX(8px);
    border-color: rgba(33, 81, 252, 0.3);
    box-shadow: 0 12px 40px rgba(33, 81, 252, 0.2);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(33, 81, 252, 0.4);
    position: relative;
    z-index: 2;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.contact-item p {
    color: rgba(241, 245, 249, 0.7);
    line-height: 1.9;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item a:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-group label {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'JetBrains Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 24px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(10, 14, 39, 0.5);
    color: var(--text-light);
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(241, 245, 249, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(10, 14, 39, 0.7);
    box-shadow: 
        0 0 0 4px rgba(33, 81, 252, 0.1),
        0 0 20px rgba(33, 81, 252, 0.2);
}

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

.form-message {
    margin-top: 24px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    border: 1px solid;
    font-weight: 600;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: block;
    border-color: rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: block;
    border-color: rgba(239, 68, 68, 0.3);
}

/* CTA - Immersive */
.cta {
    background: var(--bg-gradient);
    color: white;
    text-align: center;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(33, 81, 252, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 48px;
    opacity: 0.9;
    color: rgba(241, 245, 249, 0.8);
}

/* Footer - Minimal Premium */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 24px;
    color: white;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'JetBrains Mono', monospace;
}

.footer-section p {
    color: rgba(241, 245, 249, 0.6);
    line-height: 2;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li a {
    color: rgba(241, 245, 249, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: rgba(241, 245, 249, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero .container {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        padding: 120px 0 40px;
        gap: 32px;
        z-index: 999;
        border-right: 1px solid var(--glass-border);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding: 140px 40px 60px;
    }

    .hero-content {
        padding-right: 0;
    }

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

    .about-text {
        padding-right: 0;
    }

    .about-stats {
        position: static;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 100px 0;
    }
    
    .service-detail-card {
        padding: 50px 30px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
