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

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --color-dark: #0A0A0F;
    --color-dark-light: #1A1A1F;
    --color-accent-green: #da2668; /* Pink from logo */
    --color-accent-orange: #FF6B35;
    --color-accent-blue: #3A81C3;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-text: #1a1a1a;
    --color-text-light: #6b6b6b;
    
    /* Typography - Professional Design Agency Style */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
    
    /* Container */
    --container-width: 1200px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    overflow: hidden;
    /* Create stacking context for blend modes */
    isolation: isolate;
}

.network-canvas,
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.scroll-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-md);
    /* Remove isolation so blend mode works with video below */
}

/* Fade-in animations triggered by scroll */
.fade-in-text {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-button {
    opacity: 0;
    transform: translateY(20px);
}

.hero-headline {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.4), 0 0 30px rgba(218, 38, 104, 0.3);
}

#morphLine {
    display: block;
    background: linear-gradient(135deg, #da2668 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(218, 38, 104, 0.4)) drop-shadow(0 0 20px rgba(218, 38, 104, 0.2));
    transition: all 0.3s ease;
}

#morphText {
    display: inline-block;
    min-width: 280px;
    text-align: center;
}

.accent-text {
    display: inline-block;
    background: linear-gradient(135deg, #da2668 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(218, 38, 104, 0.4)) drop-shadow(0 0 20px rgba(218, 38, 104, 0.2));
}

.cta-primary {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #da2668 0%, #ff6b6b 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 40px rgba(218, 38, 104, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(218, 38, 104, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-accent-green);
    font-size: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    display: flex;
    align-items: center;
}

.logo-small img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent-pink);
}

/* Language Toggle */
.lang-toggle {
    margin-left: var(--spacing-xs);
}

#langToggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
}

#langToggle:hover {
    background: rgba(218, 38, 104, 0.2);
    border-color: var(--color-accent-pink);
    transform: translateY(-1px);
}

#langCode {
    letter-spacing: 0.5px;
}

/* Mobile Navigation - Modern Animated Burger */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

/* Burger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-links.mobile-menu-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(26, 10, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 100px 50px;
    gap: 40px;
    z-index: 1000;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

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

/* Mobile Menu Items Animation */
.nav-links.mobile-menu-active li {
    opacity: 0;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-links.mobile-menu-active li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.mobile-menu-active li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links.mobile-menu-active li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links.mobile-menu-active li:nth-child(4) {
    animation-delay: 0.4s;
}

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

.nav-links.mobile-menu-active a {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links.mobile-menu-active a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-pink), #ff6b9d);
    transition: width 0.3s ease;
}

.nav-links.mobile-menu-active a:hover {
    color: var(--color-accent-pink);
    transform: translateX(10px);
}

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

/* Mobile Menu Overlay Background */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.menu-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent-green);
    background: rgba(218, 38, 104, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
}

/* Dark theme section tag */
.what-we-do .section-tag {
    color: white;
    background: rgba(218, 38, 104, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* What We Do Section */
/* What We Do Section - Dramatic Modern Design */
.what-we-do {
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Animated Grid Background */
.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(218, 38, 104, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(218, 38, 104, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

/* Gradient Glow Top */
.what-we-do::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(218, 38, 104, 0.15), transparent 70%);
    pointer-events: none;
}

/* Section Header - Dark theme */
.what-we-do .section-header {
    position: relative;
    z-index: 2;
}

.what-we-do .section-title {
    color: white;
}

.what-we-do .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Glow effect on card */
.service-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 38, 104, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(218, 38, 104, 0.5), rgba(255, 107, 107, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(218, 38, 104, 0.3);
    box-shadow: 
        0 20px 60px rgba(218, 38, 104, 0.2),
        0 0 80px rgba(218, 38, 104, 0.1);
}

.service-card-modern:hover::after {
    opacity: 1;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(218, 38, 104, 0.15), rgba(218, 38, 104, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--color-accent-green);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-accent-green), #ff6b6b);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.service-card-modern:hover .service-icon-modern {
    color: white;
    transform: scale(1.15);
}

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

.service-card-modern h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.02em;
}

.service-card-modern p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-features-modern li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.service-features-modern li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-accent-green), #ff6b6b);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(218, 38, 104, 0.5);
}

/* Old styles kept for other sections */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent-green);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.service-features {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.service-features li {
    padding: 5px 0;
    color: var(--color-text-light);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-green);
    font-weight: bold;
}

.cta-container {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.cta-secondary {
    background: transparent;
    color: #ffffff; /* White text */
    padding: 18px 50px;
    border: 2px solid #ffffff; /* White border */
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-secondary:hover {
    background: #ffffff; /* White background on hover */
    color: #0a0a0a; /* Dark text on hover */
    transform: scale(1.05);
}

/* How We Work Section - Modern Dark Style */
.how-we-work {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a14 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 120px 0;
}

.how-we-work .section-title {
    color: #ffffff;
}

.how-we-work .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.how-we-work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(218, 38, 104, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px);
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
}

/* Stats Grid - Modern */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0 80px;
}

.stat-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-pink), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card-modern:hover::before {
    transform: translateX(100%);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 38, 104, 0.5);
    background: rgba(218, 38, 104, 0.05);
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(218, 38, 104, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card-modern:hover .stat-glow {
    opacity: 1;
}

.stat-number-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(218, 38, 104, 0.5);
}

.stat-number-modern svg {
    color: var(--color-accent-pink);
    filter: drop-shadow(0 0 20px rgba(218, 38, 104, 0.5));
}

.stat-label-modern {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Quality Grid - Modern */
.quality-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.quality-card-modern {
    position: relative;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(218, 38, 104, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.quality-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(218, 38, 104, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quality-card-modern:hover::before {
    opacity: 1;
}

.quality-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(218, 38, 104, 0.6);
    background: rgba(218, 38, 104, 0.08);
}

.quality-icon-modern {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 38, 104, 0.15);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.quality-icon-modern svg {
    color: #ff6b9d;
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(218, 38, 104, 0.6));
    transition: all 0.4s ease;
}

.quality-card-modern:hover .quality-icon-modern {
    background: rgba(218, 38, 104, 0.2);
    transform: scale(1.1);
}

.quality-card-modern:hover .quality-icon-modern svg {
    filter: drop-shadow(0 0 20px rgba(218, 38, 104, 0.8));
    transform: scale(1.05);
}

.quality-card-modern h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.quality-card-modern p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

/* Responsive - stack on smaller screens */
@media (max-width: 1200px) {
    .quality-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quality-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Old quality styles - Legacy */
.quality-number-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.quality-card-modern:hover .quality-number-modern {
    color: rgba(218, 38, 104, 0.2);
    transform: scale(1.1);
}

.quality-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(218, 38, 104, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quality-card-modern:hover .quality-accent {
    opacity: 1;
}

/* Old How We Work styles - Legacy */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    border-radius: 8px;
    color: var(--color-white);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent-green);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.quality-card {
    background: var(--color-light-gray);
    padding: var(--spacing-md);
    border-radius: 8px;
    position: relative;
}

.quality-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent-green);
    margin-bottom: var(--spacing-sm);
}

.quality-card h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.quality-card p {
    color: var(--color-text-light);
}

/* Examples Section - Modern Carousel */
.examples-modern {
    background: #0a0a0a;
    padding: 100px 0;
    overflow: hidden;
}

.examples-modern .section-title {
    color: #ffffff;
}

.examples-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-container {
    position: relative;
    margin: 60px 0;
    padding: 20px 80px; /* Increased horizontal padding to prevent edge clipping */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper {
    overflow: hidden; /* Must be hidden for carousel to work */
    cursor: grab;
    user-select: none;
    padding: 30px 0; /* Generous vertical padding to prevent top/bottom clipping */
    margin: -30px 0; /* Negative margin to offset the padding visually */
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0 10px; /* Small horizontal padding to prevent left/right edge clipping */
}

.project-card {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Animated border effect on hover */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #da2668, #ff6b6b, #da2668);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Large screens - 3 cards */
@media (min-width: 1600px) {
    .project-card {
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

.project-card:hover {
    transform: translateY(-8px) scale(1.01); /* Reduced scale from 1.02 to 1.01 */
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 60px rgba(218, 38, 104, 0.3),
        0 0 0 1px rgba(218, 38, 104, 0.2) inset;
}

.project-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.project-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-pink), transparent);
    margin-bottom: 20px;
}

.project-challenge {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-challenge strong {
    color: var(--color-accent-pink);
    font-weight: 600;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.project-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-pink);
    font-weight: 700;
    font-size: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-badge {
    padding: 6px 14px;
    background: rgba(218, 38, 104, 0.1);
    border: 1px solid rgba(218, 38, 104, 0.3);
    border-radius: 6px;
    font-size: 12px;
    color: #ff6b9d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(218, 38, 104, 0.2);
    border-color: rgba(218, 38, 104, 0.5);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(218, 38, 104, 0.2);
    border: 1px solid rgba(218, 38, 104, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #ffffff;
}

.carousel-nav:hover {
    background: rgba(218, 38, 104, 0.4);
    border-color: rgba(218, 38, 104, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-left {
    left: 0;
}

.carousel-nav-right {
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--color-accent-pink);
    width: 32px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .project-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .carousel-container {
        padding: 20px 60px; /* Maintain padding on mobile */
        max-width: 500px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

/* Old Examples Section - Legacy */
.examples {
    background: var(--color-light-gray);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.example-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.example-card h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.example-card p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.example-result {
    margin-top: var(--spacing-sm);
}

.result-badge {
    display: inline-block;
    background: var(--color-accent-green);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

/* Expertise Section - Modern Showcase */
.expertise {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a14 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 120px 0;
}

.expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(218, 38, 104, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 40px);
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.expertise .section-title {
    color: #ffffff;
}

.expertise .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* NEW HORIZONTAL LAYOUT - NO BOXES */
.tech-showcase-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.tech-showcase-card {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tech-showcase-card:hover {
    transform: translateY(-8px);
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.tech-icon svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
}

.tech-showcase-card:hover .tech-icon {
    transform: scale(1.2);
}

.tech-showcase-card:hover .tech-icon svg {
    color: rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 20px rgba(218, 38, 104, 0.6));
}

.tech-showcase-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    transition: all 0.4s ease;
}

.tech-showcase-card:hover h4 {
    color: rgba(255, 255, 255, 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-showcase-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .tech-showcase-grid {
        gap: 40px;
    }
    
    .tech-icon {
        width: 56px;
        height: 56px;
    }
    
    .tech-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* ========================================== */
/* BACKUP - BOXED LAYOUT (COMMENTED OUT)     */
/* ========================================== */
/*
.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tech-showcase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(218, 38, 104, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-showcase-card:hover::before {
    opacity: 1;
}

.tech-showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(218, 38, 104, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(218, 38, 104, 0.15);
}

.tech-showcase-card.primary {
    border-color: rgba(218, 38, 104, 0.3);
    background: rgba(218, 38, 104, 0.05);
}

.tech-showcase-card.primary:hover {
    border-color: rgba(218, 38, 104, 0.6);
    background: rgba(218, 38, 104, 0.1);
}
*/

/* Legacy Expertise Styles */
.expertise-main h3 {
    font-size: 28px;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.tech-item {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item.primary {
    background: linear-gradient(135deg, var(--color-accent-green) 0%, #00CC6A 100%);
    color: var(--color-dark);
    border: 3px solid var(--color-accent-green);
    transform: scale(1.05);
}

.tech-item:hover {
    border-color: var(--color-accent-green);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.tech-grid.secondary .tech-item {
    opacity: 0.6;
    font-size: 14px;
}

/* Contact Section - Modern Design */
.contact-modern {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a14 50%, #0a0a0a 100%);
    padding: 120px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(218, 38, 104, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 40px);
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.contact-modern .section-title {
    color: #ffffff;
}

.contact-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Form Styling */
.contact-form-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
}

.contact-form-modern:hover {
    border-color: rgba(218, 38, 104, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-pink);
}

.form-group-modern input:focus + .form-focus-border,
.form-group-modern select:focus + .form-focus-border,
.form-group-modern textarea:focus + .form-focus-border {
    transform: scaleX(1);
}

.form-group-modern input:focus ~ label,
.form-group-modern select:focus ~ label,
.form-group-modern textarea:focus ~ label {
    color: var(--color-accent-pink);
}

.form-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-pink), #ff6b9d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 0 0 10px 10px;
}

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

.form-group-modern select {
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Contact Info Sidebar */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    border-color: rgba(218, 38, 104, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.contact-info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 14px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.contact-method:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:first-child {
    padding-top: 0;
}

.contact-method:last-child {
    padding-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(218, 38, 104, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    background: rgba(218, 38, 104, 0.25);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-pink);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--color-accent-pink) !important;
}

.contact-value:visited {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-value:visited:hover {
    color: var(--color-accent-pink) !important;
}

.contact-value:link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-value:active {
    color: var(--color-accent-pink) !important;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-modern {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-form-modern {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
}

/* Legacy Contact Styles */
.contact {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    color: var(--color-white);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.contact-details {
    margin: var(--spacing-md) 0;
}

.contact-details p {
    margin-bottom: var(--spacing-xs);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-tagline {
    margin-top: var(--spacing-xs);
    color: var(--color-accent-green);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .services-grid,
    .quality-grid,
    .examples-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(218, 38, 104, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(218, 38, 104, 0.2);
    animation: slideUp 0.4s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #da2668 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(218, 38, 104, 0.4);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.modal-close-btn {
    background: linear-gradient(135deg, #da2668 0%, #ff6b6b 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 40px rgba(218, 38, 104, 0.3);
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(218, 38, 104, 0.4);
}

