:root {
    --primary: #4F46E5;
    --primary-light: #6366F1;
    --primary-dark: #4338CA;
    --accent: #7C3AED;
    --accent-light: #8B5CF6;
    --accent-dark: #6D28D9;
    
    --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #9333EA 100%);
    --gradient-brand-reverse: linear-gradient(135deg, #9333EA 0%, #7C3AED 50%, #4F46E5 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    
    --gray-950: #0A0A0B;
    --gray-900: #111113;
    --gray-800: #1A1A1D;
    --gray-700: #27272A;
    --gray-600: #3F3F46;
    --gray-500: #52525B;
    --gray-400: #71717A;
    --gray-300: #A1A1AA;
    --gray-200: #D4D4D8;
    --gray-100: #F4F4F5;
    
    --black: #000000;
    --white: #FFFFFF;
    
    --glow-primary: rgba(79, 70, 229, 0.4);
    --glow-accent: rgba(124, 58, 237, 0.4);
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-hover: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.12);
    
    --gradient-mesh: 
        radial-gradient(at 20% 30%, rgba(79, 70, 229, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 20%, rgba(124, 58, 237, 0.12) 0px, transparent 50%),
        radial-gradient(at 40% 80%, rgba(147, 51, 234, 0.08) 0px, transparent 50%);
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --section-padding: clamp(80px, 12vw, 160px);
    --container-width: min(90vw, 1400px);
    
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--gray-950);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
    -webkit-font-smoothing: antialiased;
}

.cursor, .cursor-dot { display: none; }
.cursor {
    width: 20px; height: 20px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--ease-smooth), background 0.15s var(--ease-smooth);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 5px; height: 5px;
    background: var(--primary-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}
.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(99, 102, 241, 0.15);
}
@media (hover: none) {
    .cursor, .cursor-dot { display: none; }
    body, body a, body button, body input, body textarea, body select { cursor: auto; }
}
::selection { background: var(--primary); color: var(--white); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.75rem, 8vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
p { font-size: clamp(1rem, 1.2vw, 1.0625rem); color: var(--gray-300); line-height: 1.7; }
a { color: inherit; text-decoration: none; cursor: auto; }

.container { width: var(--container-width); margin: 0 auto; }
.section { padding: var(--section-padding) 0; position: relative; }

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-smooth);
}
.nav.scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s var(--ease-smooth);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.05); }
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500;
    color: var(--gray-300);
    transition: color 0.3s var(--ease-smooth);
    position: relative; padding: 0.25rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--gradient-brand);
    border-radius: 8px;
    font-weight: 600; font-size: 0.875rem;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px var(--glow-primary);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-primary);
}
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: auto; background: none; border: none; padding: 10px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-smooth);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* Mobile menu - hidden by default on all screens */
.nav-menu {
    display: none;
    position: fixed; 
    inset: 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    gap: 2rem;
    opacity: 0; 
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    z-index: 999;
}

@media (max-width: 968px) {
    .nav-toggle { display: flex; }
    .nav-inner > .nav-links, 
    .nav-inner > .nav-cta { display: none; }
    .nav-menu { display: flex; }
    .nav-menu.active { opacity: 1; visibility: visible; }
    .nav-menu .nav-links { 
        display: flex; 
        flex-direction: column; 
        text-align: center; 
        gap: 1.5rem; 
    }
    .nav-menu .nav-links a { font-size: 1.5rem; }
    .nav-menu .nav-cta { display: inline-block; }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35; filter: saturate(0.8);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.7) 50%, rgba(10,10,11,0.98) 100%);
    z-index: -1;
}
.hero-mesh {
    position: absolute; inset: 0;
    background: var(--gradient-mesh);
    animation: meshMove 25s ease-in-out infinite;
    z-index: -1;
}
@keyframes meshMove {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.1) translate(-3%, -3%); }
    66% { transform: scale(1.05) translate(3%, 3%); }
}
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--primary); top: 5%; left: 5%; }
.orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: 10%; right: 10%; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: #9333EA; top: 40%; right: 25%; animation-delay: -14s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(30px, 40px) scale(1.05); }
}
.hero-content { text-align: center; max-width: 900px; padding: 0 2rem; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.625rem;
    padding: 0.625rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s var(--ease-expo) forwards, badgeGlow 3s ease-in-out infinite;
    opacity: 0;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(139, 92, 246, 0.05);
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(139, 92, 246, 0.05); }
    50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), inset 0 0 30px rgba(139, 92, 246, 0.1); }
}
.hero-badge-dot {
    width: 10px; height: 10px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(139, 92, 246, 0.6); }
    50% { opacity: 0.8; transform: scale(1.4); box-shadow: 0 0 20px rgba(236, 72, 153, 0.8); }
}
.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-expo) 0.1s forwards;
    opacity: 0;
}
.hero-title .highlight {
    background: linear-gradient(90deg, #8B5CF6, #EC4899, #8B5CF6, #6366F1, #8B5CF6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, #6366F1);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: gradientFlow 3s ease infinite, underlineGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 40px rgba(236, 72, 153, 0.4);
}
@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes underlineGlow {
    0%, 100% { opacity: 0.8; transform: scaleX(0.95); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Floating particles effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(99, 102, 241, 0.3) 0%, transparent 100%),
        radial-gradient(3px 3px at 60% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 60%, rgba(139, 92, 246, 0.4) 0%, transparent 100%),
        radial-gradient(3px 3px at 10% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 40%, rgba(236, 72, 153, 0.3) 0%, transparent 100%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
    33% { transform: translateY(-20px) rotate(1deg); opacity: 0.8; }
    66% { transform: translateY(10px) rotate(-1deg); opacity: 0.9; }
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s var(--ease-expo) 0.2s forwards;
    opacity: 0;
}
.hero-buttons {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-expo) 0.3s forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600; font-size: 0.9375rem;
    transition: all 0.4s var(--ease-smooth);
    cursor: auto; border: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #8B5CF6 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.4);
    animation: buttonGlow 3s ease-in-out infinite;
}
@keyframes buttonGlow {
    0%, 100% { background-position: 0% 50%; box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { background-position: 100% 50%; box-shadow: 0 8px 32px rgba(139, 92, 246, 0.6), 0 0 20px rgba(99, 102, 241, 0.3); }
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5), 0 0 30px rgba(99, 102, 241, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--gray-950);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.btn-icon { transition: transform 0.3s var(--ease-smooth); }
.btn:hover .btn-icon { transform: translateX(4px); }
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    animation: fadeInUp 0.8s var(--ease-expo) 0.5s forwards, bounce 2.5s ease-in-out infinite 1.5s;
    opacity: 0;
}
.hero-scroll span {
    font-size: 0.6875rem; font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.15em;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    position: relative; overflow: hidden;
}
.scroll-line::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 15px;
    background: var(--accent-light);
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -15px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Services */
.services { background: var(--gray-900); position: relative; }
.services::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { max-width: 550px; margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s var(--ease-smooth);
    position: relative; 
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.service-card::before {
    content: '';
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    border-radius: 24px;
}
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 25px 60px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--ease-smooth);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}
.service-card:hover .service-icon { 
    transform: scale(1.15) rotate(-5deg); 
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
}
.service-title { margin-bottom: 0.75rem; color: var(--white); }
.service-description { margin-bottom: 1.5rem; font-size: 0.9375rem; }
.service-features { list-style: none; }
.service-features li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem; color: var(--gray-300);
    transition: all 0.3s ease;
}
.service-card:hover .service-features li {
    color: var(--gray-200);
}
.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    border-radius: 50%;
    font-weight: 700; 
    font-size: 0.65rem;
}

/* Benefits */
.benefits { background: var(--gray-950); position: relative; overflow: hidden; }
.benefits-bg { position: absolute; inset: 0; background: var(--gradient-mesh); opacity: 0.6; }
.benefits-content { position: relative; z-index: 1; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899, #6366F1);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}
.benefit-card:hover::before {
    opacity: 1;
}
.benefit-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #6366F1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    animation: numberGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}
@keyframes numberGlow {
    0%, 100% { background-position: 0% 50%; filter: brightness(1); }
    50% { background-position: 100% 50%; filter: brightness(1.2); }
}
.benefit-label {
    font-size: 0.875rem; font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase; letter-spacing: 0.1em;
}

/* Cases */
.cases { background: var(--gray-900); }
.cases-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}
@media (max-width: 480px) { .cases-slider { grid-template-columns: 1fr; } }
.case-card {
    background: var(--gray-800);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--glass-border);
}
.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.2);
}
.case-image {
    height: 220px;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    position: relative; overflow: hidden;
}
.case-image::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-mesh);
    animation: meshMove 12s ease-in-out infinite;
}
.case-logo {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 800;
    color: var(--white);
    opacity: 0.7;
}
.case-content { padding: 1.75rem; }
.case-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-subtle);
    color: var(--primary-light);
    border-radius: 6px;
    font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 0.875rem;
}
.case-title { margin-bottom: 0.625rem; color: var(--white); }
.case-description { margin-bottom: 1.25rem; font-size: 0.9rem; }
.case-stats { display: flex; gap: 2rem; }
.case-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.case-stat-label {
    font-size: 0.6875rem; font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* Pricing */
.pricing { background: var(--gray-950); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}
.pricing-card:hover { border-color: rgba(99, 102, 241, 0.3); }
.pricing-card.featured {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.08) 0%, transparent 100%);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.02);
}
.pricing-card.featured::before {
    content: 'Populair';
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    background: var(--gradient-brand);
    border-radius: 6px;
    font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--glass-border);
}
.pricing-name {
    font-family: var(--font-display);
    font-size: 1.375rem; font-weight: 700;
    margin-bottom: 0.375rem;
}
.pricing-description { font-size: 0.8125rem; color: var(--gray-500); }
.pricing-amount {
    display: flex; align-items: baseline; justify-content: center;
    gap: 0.25rem; margin-top: 1.25rem;
}
.pricing-currency { font-size: 1.25rem; font-weight: 600; color: var(--gray-400); }
.pricing-value {
    font-family: var(--font-display);
    font-size: 3.25rem; font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pricing-period { font-size: 0.875rem; color: var(--gray-500); }
.pricing-features { list-style: none; margin-bottom: 1.75rem; }
.pricing-features li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.875rem; color: var(--gray-300);
    border-bottom: 1px solid var(--glass-border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '✓';
    width: 20px; height: 20px;
    background: var(--gradient-subtle);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.625rem; font-weight: 700;
    flex-shrink: 0;
}
.pricing-cta { width: 100%; justify-content: center; }

/* Contact */
.contact { background: var(--gray-900); }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 968px) { .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-details { list-style: none; }
.contact-details li {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.contact-details li:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
}
.contact-text span {
    display: block;
    font-size: 0.6875rem; font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}
.contact-text a, .contact-text p { color: var(--white); font-size: 0.9375rem; font-weight: 500; }
.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 550px) { .form-grid { grid-template-columns: 1fr; } }
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 0.8125rem; font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-smooth);
    cursor: auto;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-primary);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 1rem;
    padding-right: 2.75rem;
}
.form-error { font-size: 0.75rem; color: #EF4444; margin-top: 0.375rem; display: none; }
.form-group.error .form-input, .form-group.error .form-textarea, .form-group.error .form-select { border-color: #EF4444; }
.form-group.error .form-error { display: block; }
.form-submit { width: 100%; margin-top: 0.75rem; }

/* Footer */
.footer {
    background: var(--gray-950);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 968px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-logo-icon { width: 52px; height: 52px; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.footer-description { font-size: 0.875rem; margin-bottom: 1.25rem; color: var(--gray-400); }
.footer-social { display: flex; gap: 0.625rem; }
.social-link {
    width: 40px; height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--gray-400);
    transition: all 0.3s var(--ease-smooth);
}
.social-link:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}
.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem; font-weight: 600;
    margin-bottom: 1.25rem; color: var(--white);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray-500); transition: color 0.3s var(--ease-smooth); }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap; gap: 1rem;
}
.footer-copyright { font-size: 0.8125rem; color: var(--gray-600); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: var(--gray-600); transition: color 0.3s var(--ease-smooth); }
.footer-legal a:hover { color: var(--primary-light); }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-expo); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Loader */
.loader {
    position: fixed; inset: 0;
    background: var(--gray-950);
    display: flex; align-items: center; justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.loader-logo-icon { width: 70px; height: 70px; }
.loader-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.loader-logo-text { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--white); }
.loader-bar { width: 180px; height: 3px; background: var(--gray-800); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; background: var(--gradient-brand); animation: loading 1.5s var(--ease-smooth) forwards; }
@keyframes loading { 0% { width: 0%; } 100% { width: 100%; } }

@media (max-width: 768px) {
    .hero-content { padding: 0 1rem; }
    .section { padding: clamp(60px, 10vw, 100px) 0; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; order: -1; }
    .contact-form-wrapper { padding: 1.75rem; }
}

/* ========== SB GRADIENT LOGO STYLING ========== */
.sb-gradient-text {
    background: linear-gradient(90deg, #8B5CF6, #EC4899, #8B5CF6, #6366F1, #8B5CF6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.nav-logo-text, .footer-logo-text, .loader-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 0.3ch;
}
.nav-logo-text .sb-gradient-text,
.footer-logo-text .sb-gradient-text,
.loader-logo-text .sb-gradient-text {
    font-weight: 800;
}

/* ========== END SB AUTOMATIONS LOGO STYLING ========== */

/* ========== PROFESSIONAL ALIGNMENT FIXES ========== */

/* Cases/Portfolio Cards - Equal Heights */
.cases-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.case-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-description {
    flex: 1;
}

.case-stats {
    margin-top: auto;
    padding-top: 1rem;
}

/* Pricing Cards - Equal Heights & Centered CTA */
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-features {
    flex: 1;
}

.pricing-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Grid Consistency */
.footer-column {
    min-width: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

/* Button Text Centering Fix */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Nav CTA consistent sizing */
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

/* Mobile Responsive Fixes */
@media (max-width: 480px) {
    .cases-slider {
        grid-template-columns: 1fr;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .case-stat {
        text-align: center;
    }
}

/* ========== END PROFESSIONAL FIXES ========== */

/* ========== TECH STACK TICKER ========== */
.ticker-section { background: var(--gray-950); overflow: hidden; padding: var(--section-padding) 0 calc(var(--section-padding) * 0.6); }
.ticker-wrapper { position: relative; overflow: hidden; margin-top: 2.5rem; }
.ticker-wrapper::before,
.ticker-wrapper::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(90deg, var(--gray-950) 0%, transparent 100%); }
.ticker-wrapper::after { right: 0; background: linear-gradient(90deg, transparent 0%, var(--gray-950) 100%); }
.ticker-track {
    display: flex; gap: 2rem; width: max-content;
    animation: tickerScroll 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.4rem;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 50px; white-space: nowrap; font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 500; color: var(--gray-300);
    transition: all 0.3s var(--ease-smooth);
}
.ticker-item:hover {
    background: var(--glass-bg-hover); border-color: var(--glass-border-hover);
    color: var(--white); transform: translateY(-2px);
}
.ticker-item span { font-size: 1.2rem; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--gray-900); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem; margin-top: 0.5rem;
}
@media (max-width: 480px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    display: flex; flex-direction: column;
}
.testimonial-card:hover {
    background: var(--glass-bg-hover); border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-quote-mark {
    position: absolute; top: 1rem; right: 1.5rem;
    font-size: 4rem; line-height: 1; font-family: Georgia, serif;
    background: var(--gradient-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; opacity: 0.15;
}
.testimonial-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.testimonial-stars span { color: #F59E0B; font-size: 1rem; }
.testimonial-text {
    font-size: 0.95rem; line-height: 1.7; color: var(--gray-300);
    margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-brand); display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 1rem; color: var(--white);
}
.testimonial-author-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.testimonial-author-info p { font-size: 0.8rem; color: var(--gray-400); }

/* ========== SUB-BRANDS / ECOSYSTEM ========== */
.ecosystem { background: var(--gray-950); position: relative; overflow: hidden; }
.ecosystem-bg { position: absolute; inset: 0; background: var(--gradient-mesh); opacity: 0.4; }
.ecosystem-content { position: relative; z-index: 1; }
.brand-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
@media (max-width: 480px) { .brand-grid { grid-template-columns: 1fr; } }
.brand-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    display: flex; flex-direction: column;
}
.brand-card:hover {
    background: var(--glass-bg-hover); border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.brand-card[data-brand="halalway"]:hover { box-shadow: 0 20px 50px rgba(46, 204, 113, 0.15); border-color: rgba(46, 204, 113, 0.3); }
.brand-card[data-brand="sighunt"]:hover { box-shadow: 0 20px 50px rgba(243, 156, 18, 0.15); border-color: rgba(243, 156, 18, 0.3); }
.brand-card[data-brand="gemhunt"]:hover { box-shadow: 0 20px 50px rgba(231, 76, 60, 0.15); border-color: rgba(231, 76, 60, 0.3); }
.brand-card[data-brand="toversprookje"]:hover { box-shadow: 0 20px 50px rgba(155, 89, 182, 0.15); border-color: rgba(155, 89, 182, 0.3); }
.brand-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.brand-logo {
    width: 52px; height: 52px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem;
    font-weight: 800; color: var(--white); flex-shrink: 0; overflow: hidden;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.brand-logo[data-brand="halalway"] { background: linear-gradient(135deg, #2ECC71, #27AE60); }
.brand-logo[data-brand="sighunt"] { background: linear-gradient(135deg, #F39C12, #E67E22); }
.brand-logo[data-brand="gemhunt"] { background: linear-gradient(135deg, #E74C3C, #C0392B); }
.brand-logo[data-brand="toversprookje"] { background: linear-gradient(135deg, #9B59B6, #8E44AD); }
.brand-card-header h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white);
}
.brand-card-header .brand-domain {
    font-size: 0.75rem; color: var(--gray-400); font-weight: 400;
}
.brand-tagline {
    font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.brand-description { font-size: 0.875rem; color: var(--gray-300); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.brand-stats { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; }
.brand-stat-value {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; background-size: 200% auto;
    animation: numberGlow 3s ease-in-out infinite;
}
.brand-stat-label { font-size: 0.7rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.brand-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 600; color: var(--primary-light);
    text-decoration: none; transition: all 0.3s var(--ease-smooth);
}
.brand-link:hover { color: var(--white); gap: 0.65rem; }

/* ========== ACCESSIBILITY ========== */

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 0 0 8px 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    z-index: 100000;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ========== END NEW SECTIONS ========== */
