/* ========================================
   CSS Variables / Design Tokens
======================================== */
:root {
    /* Colors */
    --background: hsl(222, 47%, 6%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(222, 47%, 8%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(199, 89%, 48%);
    --primary-foreground: hsl(222, 47%, 6%);
    --secondary: hsl(222, 47%, 14%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(222, 30%, 20%);
    --muted-foreground: hsl(215, 20%, 65%);
    --accent: hsl(280, 75%, 60%);
    --accent-foreground: hsl(210, 40%, 98%);
    --border: hsl(222, 30%, 18%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(199, 89%, 48%) 0%, hsl(280, 75%, 60%) 50%, hsl(330, 80%, 55%) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsl(199, 89%, 48%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsl(280, 75%, 60%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsl(199, 89%, 48%, 0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsl(330, 80%, 55%, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsl(280, 75%, 60%, 0.1) 0px, transparent 50%);
    
    /* Glows */
    --glow-primary: 0 0 60px hsl(199, 89%, 48%, 0.4), 0 0 120px hsl(199, 89%, 48%, 0.2);
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted-foreground);
}

/* ========================================
   Utility Classes
======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-primary {
    box-shadow: var(--glow-primary);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--primary-foreground);
}

.btn-hero:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px hsl(199, 89%, 48%, 0.3);
}

.btn-hero-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-hero-outline:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-xl {
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: hsl(199, 89%, 48%, 0.1);
    border: 1px solid hsl(199, 89%, 48%, 0.3);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.section-badge-alt {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.section-title {
    margin-top: 1.5rem;
    font-size: 2rem;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Stat Colors */
.stat-primary { color: var(--primary); }
.stat-accent { color: var(--accent); }
.stat-pink { color: hsl(330, 80%, 60%); }
.stat-emerald { color: hsl(160, 84%, 39%); }

/* Icon Gradients */
.icon-cyan-blue {
    background: linear-gradient(135deg, hsl(188, 94%, 43%), hsl(217, 91%, 60%));
}

.icon-violet-purple {
    background: linear-gradient(135deg, hsl(258, 90%, 66%), hsl(271, 81%, 56%));
}

.icon-emerald-teal {
    background: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(174, 72%, 56%));
}

.icon-orange-amber {
    background: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(38, 92%, 50%));
}

.icon-pink-rose {
    background: linear-gradient(135deg, hsl(330, 81%, 60%), hsl(351, 83%, 61%));
}

.icon-indigo-violet {
    background: linear-gradient(135deg, hsl(239, 84%, 67%), hsl(258, 90%, 66%));
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 50px) scale(0.9);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(60px, -40px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-up.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Navbar
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: hsl(222, 47%, 6%, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid hsl(222, 30%, 18%, 0.5);
    animation: slideDown 0.5s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--foreground);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: var(--foreground);
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--secondary);
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    overflow: hidden;
    border-top: 1px solid hsl(222, 30%, 18%, 0.5);
    background: var(--background);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-menu .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--foreground);
}

.mobile-cta {
    margin-top: 0.5rem;
    width: 100%;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        hsl(222, 47%, 6%, 0.6) 0%, 
        hsl(222, 47%, 6%, 0.4) 50%, 
        hsl(222, 47%, 6%) 100%
    );
}

.hero-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
}

.mesh-orb-1 {
    left: -10rem;
    top: -10rem;
    width: 37.5rem;
    height: 37.5rem;
    background: radial-gradient(circle, hsl(199, 89%, 48%, 0.3) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}

.mesh-orb-2 {
    right: -5rem;
    top: 5rem;
    width: 31.25rem;
    height: 31.25rem;
    background: radial-gradient(circle, hsl(280, 75%, 60%, 0.25) 0%, transparent 70%);
    animation: float2 10s ease-in-out infinite 1s;
}

.mesh-orb-3 {
    bottom: 0;
    left: 33%;
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, hsl(330, 80%, 55%, 0.2) 0%, transparent 70%);
    animation: float3 14s ease-in-out infinite 2s;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(199, 89%, 48%, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, hsl(199, 89%, 48%, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 4rem);
    padding: 5rem 1rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: hsl(199, 89%, 48%, 0.1);
    border: 1px solid hsl(199, 89%, 48%, 0.3);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    backdrop-filter: blur(8px);
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    max-width: 64rem;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    margin-top: 1.5rem;
    max-width: 42rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.stat-card {
    position: relative;
    padding: 1.5rem;
    background: hsl(222, 47%, 8%, 0.3);
    border: 1px solid hsl(0, 0%, 100%, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: hsl(199, 89%, 48%, 0.3);
    background: hsl(222, 47%, 8%, 0.5);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background: linear-gradient(to top, var(--background) 0%, hsl(222, 47%, 6%, 0.8) 50%, transparent 100%);
}

/* ========================================
   Services Section
======================================== */
.services {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.services-glow-1 {
    left: 0;
    top: 0;
    width: 31.25rem;
    height: 31.25rem;
    background: hsl(188, 94%, 43%, 0.1);
    transform: translateX(-50%);
}

.services-glow-2 {
    right: 0;
    bottom: 0;
    width: 31.25rem;
    height: 31.25rem;
    background: hsl(258, 90%, 66%, 0.1);
    transform: translateX(50%);
}

.services-glow-3 {
    left: 50%;
    top: 50%;
    width: 25rem;
    height: 25rem;
    background: hsl(330, 81%, 60%, 0.05);
    transform: translate(-50%, -50%);
    filter: blur(120px);
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 2rem;
    background: hsl(222, 47%, 8%, 0.4);
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: hsl(0, 0%, 100%, 0.2);
    background: hsl(222, 47%, 8%, 0.6);
}

.service-glow {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(80px);
}

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

.service-glow-cyan { background: hsl(188, 94%, 43%, 0.3); }
.service-glow-violet { background: hsl(258, 90%, 66%, 0.3); }
.service-glow-emerald { background: hsl(160, 84%, 39%, 0.3); }
.service-glow-orange { background: hsl(25, 95%, 53%, 0.3); }
.service-glow-pink { background: hsl(330, 81%, 60%, 0.3); }

.service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    color: white;
    box-shadow: 0 10px 30px currentColor;
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.service-title {
    position: relative;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.service-description {
    position: relative;
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.25rem;
    width: 0;
    transition: width 0.5s ease;
}

.service-card:hover .service-line {
    width: 100%;
}

.service-line-cyan-blue { background: linear-gradient(to right, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.service-line-violet-purple { background: linear-gradient(to right, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.service-line-emerald-teal { background: linear-gradient(to right, hsl(160, 84%, 39%), hsl(174, 72%, 56%)); }
.service-line-orange-amber { background: linear-gradient(to right, hsl(25, 95%, 53%), hsl(38, 92%, 50%)); }
.service-line-pink-rose { background: linear-gradient(to right, hsl(330, 81%, 60%), hsl(351, 83%, 61%)); }

/* ========================================
   Why Choose Us Section
======================================== */
.why-choose-us {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.why-glow-1 {
    left: 25%;
    top: 0;
    width: 37.5rem;
    height: 37.5rem;
    background: hsl(199, 89%, 48%, 0.05);
    transform: translateX(-50%);
}

.why-glow-2 {
    right: 25%;
    bottom: 0;
    width: 31.25rem;
    height: 31.25rem;
    background: hsl(280, 75%, 60%, 0.05);
    transform: translateX(50%);
}

.why-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-content .section-title {
    margin-top: 1.5rem;
    text-align: left;
}

.why-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.why-text:first-of-type {
    margin-top: 1.5rem;
}

.why-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.why-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.why-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.reasons-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reason-card {
    position: relative;
    padding: 1.25rem;
    background: hsl(222, 47%, 8%, 0.4);
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-4px);
    border-color: hsl(0, 0%, 100%, 0.2);
    background: hsl(222, 47%, 8%, 0.6);
}

.reason-glow {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(2rem);
}

.reason-card:hover .reason-glow {
    opacity: 0.3;
}

.reason-glow-cyan { background: linear-gradient(135deg, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.reason-glow-violet { background: linear-gradient(135deg, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.reason-glow-emerald { background: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(174, 72%, 56%)); }
.reason-glow-orange { background: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(38, 92%, 50%)); }
.reason-glow-pink { background: linear-gradient(135deg, hsl(330, 81%, 60%), hsl(351, 83%, 61%)); }
.reason-glow-indigo { background: linear-gradient(135deg, hsl(239, 84%, 67%), hsl(258, 90%, 66%)); }

.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: white;
}

.reason-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.reason-title {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.reason-description {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ========================================
   Selected Work Section
======================================== */
.selected-work {
    position: relative;
    padding: var(--section-padding) 0;
}

.work-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.work-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.work-glow-1 {
    right: 0;
    top: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(199, 89%, 48%, 0.05);
}

.work-glow-2 {
    left: 0;
    bottom: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(280, 75%, 60%, 0.05);
}

.work-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .work-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.work-header .section-title {
    margin-top: 0.75rem;
    text-align: left;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.view-all-link:hover {
    color: hsl(199, 89%, 40%);
}

.view-all-link svg {
    transition: transform var(--transition-fast);
}

.view-all-link:hover svg {
    transform: translate(2px, -2px);
}

.projects-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    cursor: pointer;
}

.project-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid hsl(222, 30%, 18%, 0.3);
}

.project-gradient {
    position: absolute;
    inset: 0;
}

.project-gradient-1 { background: linear-gradient(135deg, hsl(199, 89%, 48%, 0.2), hsl(280, 75%, 60%, 0.2)); }
.project-gradient-2 { background: linear-gradient(135deg, hsl(280, 75%, 60%, 0.2), hsl(199, 89%, 48%, 0.2)); }
.project-gradient-3 { background: linear-gradient(135deg, hsl(199, 89%, 48%, 0.2), hsl(280, 75%, 60%, 0.2)); }

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, hsl(222, 47%, 6%, 0.9) 0%, hsl(222, 47%, 6%, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-foreground);
    box-shadow: 0 10px 30px hsl(199, 89%, 48%, 0.3);
}

.project-content {
    margin-top: 1rem;
}

.project-category {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.project-title {
    margin-top: 0.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.project-result {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

/* ========================================
   Process Section
======================================== */
.process {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(222, 47%, 14%, 0.3) 0%, transparent 50%, hsl(222, 47%, 14%, 0.3) 100%);
}

.process-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.process-glow-1 {
    left: 0;
    top: 33%;
    width: 25rem;
    height: 25rem;
    background: hsl(188, 94%, 43%, 0.1);
    animation: float 12s ease-in-out infinite;
}

.process-glow-2 {
    right: 0;
    bottom: 33%;
    width: 25rem;
    height: 25rem;
    background: hsl(258, 90%, 66%, 0.1);
    animation: float2 10s ease-in-out infinite;
}

.process-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
}

.process-connector {
    display: none;
    position: absolute;
    left: 50%;
    top: 3rem;
    height: 2px;
    width: 100%;
    opacity: 0.3;
}

@media (min-width: 1024px) {
    .process-connector {
        display: block;
    }
}

.process-connector-cyan { background: linear-gradient(to right, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.process-connector-violet { background: linear-gradient(to right, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.process-connector-emerald { background: linear-gradient(to right, hsl(160, 84%, 39%), hsl(174, 72%, 56%)); }

.process-card-inner {
    position: relative;
    padding: 2rem;
    background: hsl(222, 47%, 8%, 0.4);
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    text-align: center;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.process-card:hover .process-card-inner {
    transform: translateY(-8px);
    border-color: hsl(0, 0%, 100%, 0.2);
    background: hsl(222, 47%, 8%, 0.6);
}

.process-glow-effect {
    position: absolute;
    inset: -0.5rem;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(2rem);
}

.process-card:hover .process-glow-effect {
    opacity: 0.2;
}

.process-glow-cyan { background: linear-gradient(135deg, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.process-glow-violet { background: linear-gradient(135deg, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.process-glow-emerald { background: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(174, 72%, 56%)); }
.process-glow-orange { background: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(38, 92%, 50%)); }

.process-number {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px currentColor;
}

.process-number-cyan { background: linear-gradient(135deg, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.process-number-violet { background: linear-gradient(135deg, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.process-number-emerald { background: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(174, 72%, 56%)); }
.process-number-orange { background: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(38, 92%, 50%)); }

.process-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 10px 30px currentColor;
}

.process-icon-container svg {
    width: 2.25rem;
    height: 2.25rem;
}

.process-title {
    position: relative;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.process-description {
    position: relative;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonials-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.testimonials-glow-1 {
    left: 0;
    top: 50%;
    width: 31.25rem;
    height: 31.25rem;
    background: hsl(188, 94%, 43%, 0.1);
    transform: translate(-50%, -50%);
}

.testimonials-glow-2 {
    right: 0;
    top: 50%;
    width: 31.25rem;
    height: 31.25rem;
    background: hsl(258, 90%, 66%, 0.1);
    transform: translate(50%, -50%);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    background: hsl(222, 47%, 8%, 0.4);
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: hsl(0, 0%, 100%, 0.2);
    background: hsl(222, 47%, 8%, 0.6);
}

.testimonial-glow {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(80px);
}

.testimonial-card:hover .testimonial-glow {
    opacity: 0.3;
}

.testimonial-glow-cyan { background: linear-gradient(135deg, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.testimonial-glow-violet { background: linear-gradient(135deg, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.testimonial-glow-pink { background: linear-gradient(135deg, hsl(330, 81%, 60%), hsl(351, 83%, 61%)); }

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    opacity: 0.2;
}

.quote-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.testimonial-stars {
    position: relative;
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(43, 96%, 56%);
}

.testimonial-quote {
    position: relative;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--foreground);
    line-height: 1.7;
}

.testimonial-author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    position: relative;
    padding: 2px;
    border-radius: 50%;
}

.avatar-cyan { background: linear-gradient(135deg, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.avatar-violet { background: linear-gradient(135deg, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.avatar-pink { background: linear-gradient(135deg, hsl(330, 81%, 60%), hsl(351, 83%, 61%)); }

.author-avatar img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.25rem;
    width: 0;
    transition: width 0.5s ease;
}

.testimonial-card:hover .testimonial-line {
    width: 100%;
}

.testimonial-line-cyan { background: linear-gradient(to right, hsl(188, 94%, 43%), hsl(217, 91%, 60%)); }
.testimonial-line-violet { background: linear-gradient(to right, hsl(258, 90%, 66%), hsl(271, 81%, 56%)); }
.testimonial-line-pink { background: linear-gradient(to right, hsl(330, 81%, 60%), hsl(351, 83%, 61%)); }

/* ========================================
   CTA Section
======================================== */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
}

.cta-glow-1 {
    left: 50%;
    top: 50%;
    width: 50rem;
    height: 37.5rem;
    background: hsl(199, 89%, 48%, 0.15);
    transform: translate(-50%, -50%);
}

.cta-glow-2 {
    left: 25%;
    top: 50%;
    width: 25rem;
    height: 25rem;
    background: hsl(280, 75%, 60%, 0.1);
    transform: translateY(-50%);
    filter: blur(120px);
}

.cta-glow-3 {
    right: 25%;
    top: 50%;
    width: 25rem;
    height: 25rem;
    background: hsl(330, 81%, 60%, 0.1);
    transform: translateY(-50%);
    filter: blur(120px);
}

.cta-card {
    position: relative;
    border-radius: 1.5rem;
    border: 1px solid hsl(0, 0%, 100%, 0.1);
    overflow: hidden;
}

.cta-card-bg {
    position: absolute;
    inset: 0;
}

.cta-card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cta-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(222, 47%, 6%, 0.95) 0%, hsl(222, 47%, 6%, 0.85) 50%, hsl(222, 47%, 6%, 0.95) 100%);
}

.cta-card-border {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    background: linear-gradient(to right, hsl(199, 89%, 48%, 0.2), hsl(280, 75%, 60%, 0.2), hsl(330, 81%, 60%, 0.2));
    opacity: 0.5;
}

.cta-card-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(199, 89%, 48%, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, hsl(199, 89%, 48%, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    padding: 3rem;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-content {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .cta-content {
        padding: 6rem;
    }
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: hsl(199, 89%, 48%, 0.1);
    border: 1px solid hsl(199, 89%, 48%, 0.3);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.cta-badge svg {
    width: 1rem;
    height: 1rem;
}

.cta-title {
    margin-top: 2rem;
    font-size: 1.875rem;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    max-width: 42rem;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-features {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cta-features .check {
    color: var(--primary);
}

.cta-features .dot {
    margin: 0 0.5rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    border-top: 1px solid hsl(222, 30%, 18%, 0.5);
    background: hsl(222, 47%, 8%, 0.3);
    backdrop-filter: blur(8px);
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.footer-description {
    margin-top: 1rem;
    color: var(--muted-foreground);
}

.footer-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link, .contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--foreground);
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.footer-links-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--foreground);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(222, 30%, 18%, 0.5);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--foreground);
}

.social-link svg {
    transition: transform var(--transition-fast);
}

.social-link:hover svg {
    transform: translate(2px, -2px);
}
