:root {
    --primary-color: #ffffff;
    --primary-dark: #e5e5e5;
    --secondary-color: #a3a3a3;
    --accent-color: #d4d4d4;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: rgba(20, 20, 20, 0.6);
    --bg-card-hover: rgba(30, 30, 30, 0.8);
    --gradient-1: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
    --gradient-2: linear-gradient(135deg, #d4d4d4 0%, #737373 100%);
    --gradient-3: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Chrome-specific optimizations */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Hardware acceleration ONLY for animated elements */
    *[class*="particle"],
    *[class*="cursor"],
    *[class*="sphere"],
    *[class*="logo"],
    *[class*="bg-gradient"] {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
}

html {
    scroll-behavior: smooth;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow: hidden;
    line-height: 1.6;
    position: relative;
    cursor: none;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    max-width: 100vw;
}

/* Custom Cursor with Momentum */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transition: background 0.2s ease;
    will-change: transform;
    contain: layout style paint;
    backface-visibility: hidden;
}

.cursor-outline {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    contain: layout style paint;
    backface-visibility: hidden;
}

.cursor-dot.hover,
.cursor-outline.hover {
    opacity: 0.8;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.5);
}

.cursor-dot.click {
    transform: translate(-50%, -50%) scale(0.5);
}

@media (hover: none) or (pointer: coarse) {
    body {
        cursor: auto;
    }
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Performance Monitor */
.performance-monitor {
    position: absolute;
    top: clamp(0.5rem, 1vh, 1rem);
    left: clamp(0.5rem, 1vw, 1rem);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px); /* Minimal blur for Chrome */
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: clamp(0.4rem, 0.8vh, 0.6rem) clamp(0.6rem, 1.2vw, 0.9rem);
    z-index: 10;
    font-family: 'Inter', monospace;
    font-size: clamp(0.55rem, 0.9vw, 0.7rem);
    min-width: clamp(140px, 20vw, 180px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    pointer-events: none;
    opacity: .75;
    contain: layout style paint;
}

.perf-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: clamp(0.4rem, 0.8vh, 0.6rem);
    padding-bottom: clamp(0.3rem, 0.6vh, 0.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.perf-icon {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.perf-title {
    font-weight: 700;
    font-size: clamp(0.65rem, 1.1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.perf-metrics {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 0.5vh, 0.4rem);
}

.perf-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.perf-comparison {
    font-size: clamp(0.5rem, 0.8vw, 0.65rem);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-left: auto;
    font-style: italic;
    flex-basis: 100%;
    text-align: right;
    margin-top: -0.2rem;
    padding-right: 0.2rem;
}

.perf-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.55rem, 0.9vw, 0.7rem);
    font-weight: 400;
}

.perf-value {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    font-variant-numeric: tabular-nums;
    text-align: right;
    min-width: clamp(40px, 8vw, 60px);
}

.perf-value.good {
    color: rgba(76, 175, 80, 0.9);
}

.perf-value.warning {
    color: rgba(255, 193, 7, 0.9);
}

.perf-value.bad {
    color: rgba(244, 67, 54, 0.9);
}

/* Mouse Particles */
.mouse-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.mouse-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    will-change: transform, opacity;
    contain: layout style paint;
    backface-visibility: hidden;
}

/* Modern Animated Grid Background */
.bg-gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    background: #000000;
    contain: strict;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    /* Force GPU layer */
    will-change: transform;
}

.bg-gradient-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 3s linear infinite;
    opacity: 0.8;
    will-change: background-position;
    transform: translate3d(0, 0, 0);
    contain: strict;
    backface-visibility: hidden;
}

/* Optimizations for large viewports - KEEP VISUAL STYLE */
@media (min-width: 1920px) and (min-height: 1080px) {
    /* Keep animations but optimize them */
    .bg-gradient-mesh::before {
        animation: gridMove 3s linear infinite;
        opacity: 0.8;
    }
    
    .bg-gradient-mesh::after {
        animation: gradientFlow 5s ease-in-out infinite;
        opacity: 1;
    }
    
    /* Smaller cursor for less paint area */
    .cursor-outline {
        width: 20px;
        height: 20px;
    }
    
    .cursor-dot {
        width: 6px;
        height: 6px;
    }
}

/* Optimizations for ultra-large viewports - KEEP VISUAL STYLE */
@media (min-width: 2560px) and (min-height: 1440px) {
    /* Keep animations but at normal speed */
    .bg-gradient-mesh::before {
        animation: gridMove 3s linear infinite;
    }
    
    .bg-gradient-mesh::after {
        animation: gradientFlow 5s ease-in-out infinite;
    }
}

.bg-gradient-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
    animation: gradientFlow 5s ease-in-out infinite;
    will-change: opacity;
    transform: translate3d(0, 0, 0);
    contain: strict;
    backface-visibility: hidden;
}

/* Keep full gradients - they look good */

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes gradientFlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero .container {
    padding: 0;
}

.hero-content {
    padding: 0 2rem;
}

/* Ensure content is above background */
section {
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px); /* Reduced for Chrome */
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Main Viewport - Single Page Layout */
.main-viewport {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr min-content;
    grid-template-areas: 
        "top"
        "left"
        "bottom";
    overflow: hidden;
    padding: 0;
    gap: 0;
}

/* Top Header */
.top-header {
    grid-area: top;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.5rem, 1.5vh, 1rem) clamp(1rem, 2vw, 1.5rem);
    z-index: 10;
    position: relative;
    flex-shrink: 0;
    min-height: 0;
}

/* Discord Contact */
.discord-contact {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    white-space: nowrap;
    user-select: text;
    cursor: text;
}

.brand-logo {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    /* letter-spacing: 0.25em; */
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    line-height: 1;
}

.logo-r,
.logo-rest {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.logo-o-sphere {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(1.2rem, 3vw, 2rem);
    height: clamp(1.2rem, 3vw, 2rem);
    position: relative;
    margin: 0 clamp(0.05rem, 0.2vw, 0.1rem);
    line-height: 1;
    vertical-align: middle;
}

/* Logo Sphere - positioned to replace first O */
.logo-o-sphere .planet-system {
    width: clamp(1.2rem, 3vw, 2rem) !important;
    height: clamp(1.2rem, 3vw, 2rem) !important;
    margin: 0;
    position: relative;
}

.logo-o-sphere .planet-sphere {
    width: clamp(1.2rem, 3vw, 2rem) !important;
    height: clamp(1.2rem, 3vw, 2rem) !important;
    animation: rotatePlanet 20s infinite linear;
    position: relative;
}

.logo-o-sphere .sphere-ring {
    width: clamp(1.2rem, 3vw, 2rem) !important;
    height: clamp(1.2rem, 3vw, 2rem) !important;
    border-width: clamp(0.5px, 0.1vw, 0.8px);
}

.main-viewport .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Left Content */
.left-content {
    grid-area: left;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(0.5rem, 1.5vh, 2rem) clamp(1rem, 3vw, 2rem);
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    gap: clamp(0.5rem, 1.5vh, 1.5rem);
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden;
    min-height: 0;
    contain: layout style;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: min(90vw, 900px);
    width: 100%;
    flex-shrink: 1;
    min-height: 0;
}

.hero-title {
    font-size: clamp(1.2rem, min(6vw, 3vh), 3rem);
    font-weight: 900;
    line-height: clamp(1.05, 1.1vh, 1.1);
    margin-bottom: clamp(0.4rem, 1.5vh, 1rem);
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(0.55rem, min(1.5vw, 2vh), 0.95rem) !important;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: clamp(1.3, 1.6vh, 1.6);
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: min(85vw, 550px);
    text-align: center;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.left-content .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}


/* Planet and Moon System */
.main-viewport .planet-system {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.planet-system {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.main-viewport .planet-sphere {
    width: 500px;
    height: 500px;
    position: relative;
    animation: rotatePlanet 20s infinite linear;
    transform-style: preserve-3d;
}

.planet-sphere {
    width: 400px;
    height: 400px;
    position: relative;
    animation: rotatePlanet 20s infinite linear;
    transform-style: preserve-3d;
}

.main-viewport .sphere-ring {
    width: 500px;
    height: 500px;
}

.sphere-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.1),
        0 0 8px rgba(255, 255, 255, 0.2);
}

/* Logo sphere rings - white and thinner */
.logo-sphere .sphere-ring {
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.15),
        0 0 6px rgba(255, 255, 255, 0.3);
}

/* Horizontal rings (rotated around X-axis) - White colors */
.sphere-ring.horizontal.ring-1 { transform: rotateX(0deg); border-color: rgba(255, 255, 255, 0.9); }
.sphere-ring.horizontal.ring-2 { transform: rotateX(10deg); border-color: rgba(255, 255, 255, 0.85); }
.sphere-ring.horizontal.ring-3 { transform: rotateX(20deg); border-color: rgba(255, 255, 255, 0.8); }
.sphere-ring.horizontal.ring-4 { transform: rotateX(30deg); border-color: rgba(255, 255, 255, 0.75); }
.sphere-ring.horizontal.ring-5 { transform: rotateX(40deg); border-color: rgba(255, 255, 255, 0.7); }
.sphere-ring.horizontal.ring-6 { transform: rotateX(50deg); border-color: rgba(255, 255, 255, 0.65); }
.sphere-ring.horizontal.ring-7 { transform: rotateX(60deg); border-color: rgba(255, 255, 255, 0.6); }
.sphere-ring.horizontal.ring-8 { transform: rotateX(70deg); border-color: rgba(255, 255, 255, 0.55); }
.sphere-ring.horizontal.ring-9 { transform: rotateX(80deg); border-color: rgba(255, 255, 255, 0.5); }
.sphere-ring.horizontal.ring-10 { transform: rotateX(90deg); border-color: rgba(255, 255, 255, 0.45); }
.sphere-ring.horizontal.ring-11 { transform: rotateX(100deg); border-color: rgba(255, 255, 255, 0.5); }
.sphere-ring.horizontal.ring-12 { transform: rotateX(110deg); border-color: rgba(255, 255, 255, 0.55); }

/* Vertical rings (rotated around Y-axis) - White colors */
.sphere-ring.vertical.ring-v1 { transform: rotateY(0deg); border-color: rgba(255, 255, 255, 0.9); }
.sphere-ring.vertical.ring-v2 { transform: rotateY(10deg); border-color: rgba(255, 255, 255, 0.85); }
.sphere-ring.vertical.ring-v3 { transform: rotateY(20deg); border-color: rgba(255, 255, 255, 0.8); }
.sphere-ring.vertical.ring-v4 { transform: rotateY(30deg); border-color: rgba(255, 255, 255, 0.75); }
.sphere-ring.vertical.ring-v5 { transform: rotateY(40deg); border-color: rgba(255, 255, 255, 0.7); }
.sphere-ring.vertical.ring-v6 { transform: rotateY(50deg); border-color: rgba(255, 255, 255, 0.65); }
.sphere-ring.vertical.ring-v7 { transform: rotateY(60deg); border-color: rgba(255, 255, 255, 0.6); }
.sphere-ring.vertical.ring-v8 { transform: rotateY(70deg); border-color: rgba(255, 255, 255, 0.55); }
.sphere-ring.vertical.ring-v9 { transform: rotateY(80deg); border-color: rgba(255, 255, 255, 0.5); }
.sphere-ring.vertical.ring-v10 { transform: rotateY(90deg); border-color: rgba(255, 255, 255, 0.45); }
.sphere-ring.vertical.ring-v11 { transform: rotateY(100deg); border-color: rgba(255, 255, 255, 0.5); }
.sphere-ring.vertical.ring-v12 { transform: rotateY(110deg); border-color: rgba(255, 255, 255, 0.55); }

.moon-orbit {
    width: 480px;
    height: 480px;
    position: absolute;
    border-radius: 50%;
    animation: orbitMoon 12s infinite linear;
    transform-style: preserve-3d;
    transform: rotateX(35deg) rotateY(25deg);
}

.moon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: rotateMoon 3s infinite linear;
    transform-style: preserve-3d;
    background: 
        radial-gradient(circle at 25% 25%, rgba(90, 90, 90, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse at center, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    box-shadow: 
        inset -12px -12px 24px rgba(0, 0, 0, 0.7),
        inset 12px 12px 24px rgba(255, 255, 255, 0.12),
        0 0 40px rgba(255, 255, 255, 0.15),
        -8px -8px 15px rgba(0, 0, 0, 0.5);
}

@keyframes rotatePlanet {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes rotateMoon {
    0% {
        transform: translateX(-50%) rotateY(0deg);
    }
    100% {
        transform: translateX(-50%) rotateY(360deg);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 25%, #ffffff 50%, #d0d0d0 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    will-change: background-position;
    contain: paint;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    backdrop-filter: blur(3px); /* Minimal blur for Chrome */
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(5px); /* Reduced for Chrome */
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    bottom: 0;
    left: 20%;
    animation-delay: 2s;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Right Content */
.right-content {
    grid-area: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 4rem 3rem 2rem;
    z-index: 2;
    max-width: 100%;
}

.services-text {
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 1vh, 0.75rem);
    width: 100%;
    max-width: min(90vw, 600px);
    align-items: center;
    flex-shrink: 1;
    min-height: 0;
}

.left-content .services-text {
    align-items: center;
}

.service-text-item {
    padding: clamp(0.4rem, 0.8vh, 0.75rem) clamp(0.75rem, 2vw, 1.5rem);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    max-width: min(85vw, 550px);
    align-self: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(3px); /* Minimal blur for Chrome */
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    contain: layout style;
    will-change: transform;
}

.service-text-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-text-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-text-item:hover::before {
    opacity: 1;
}

.service-text-item h3 {
    font-size: clamp(0.6rem, min(1.3vw, 2vh), 0.85rem) !important;
    font-weight: 900;
    margin: 0 0 clamp(0.08rem, 0.35vh, 0.25rem) 0;
    line-height: clamp(1.15, 1.3vh, 1.25);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.service-text-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.55rem, min(1.2vw, 1.8vh), 0.75rem) !important;
    line-height: clamp(1.25, 1.5vh, 1.4);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Bottom Content */
.bottom-content {
    grid-area: bottom;
    width: 100%;
    max-width: 100vw;
    max-height: 100%;
    z-index: 10;
    padding: clamp(0.5rem, 1.5vh, 1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: clamp(0.5rem, 1vh, 0.75rem);
    overflow: hidden;
    min-height: 0;
    flex-shrink: 0;
}

.trusted-by-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.25rem, 0.8vw, 0.5rem);
}

.trusted-logo {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 3vw, 2rem);
}

.trusted-logo .logo-o-sphere {
    width: clamp(1.25rem, 3vw, 2rem);
    height: clamp(1.25rem, 3vw, 2rem);
}

.trusted-by-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.65rem, 1.3vw, 0.85rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.trusted-by-section {
    width: 100%;
    max-width: 100vw;
    max-height: 100%;
    overflow: hidden;
    height: clamp(60px, 10vh, 100px);
    display: flex !important;
    align-items: center;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent;
    padding: 0;
    flex-shrink: 0;
}

.bottom-content .logos-marquee {
    display: flex !important;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: fit-content;
    animation: scrollLogos 120s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    height: 100%;
    min-height: clamp(50px, 10vw, 80px);
}

/* Services Section (old - keeping for compatibility) */
.services {
    padding: 6rem 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px); /* Minimal blur for Chrome */
    -webkit-backdrop-filter: blur(3px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.85rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 6rem 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
    background: rgba(255, 255, 255, 0.02);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.dashboard-preview {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px); /* Minimal blur for Chrome */
    -webkit-backdrop-filter: blur(3px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-label {
    width: 80px;
    font-weight: 600;
    color: var(--text-secondary);
}

.metric-fill {
    flex: 1;
    height: 12px;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: fillBar 2s ease-out;
}

/* Trusted By Section */
.trusted-by {
    padding: 6rem 0;
    background: transparent;
    overflow: hidden;
}

/* Updated trusted-by for bottom positioning */
.logos-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.bottom-content .logos-marquee-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow: hidden !important;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.logos-marquee {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: fit-content;
    animation: scrollLogos 120s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    /* Force GPU compositing layer */
    -webkit-transform: translate3d(0, 0, 0);
    contain: layout style paint;
}

.logos-marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(var(--marquee-width, -50%)), 0, 0);
    }
}

.logo-item {
    flex-shrink: 0;
    width: clamp(120px, 20vw, 180px);
    height: clamp(50px, 10vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.8;
    min-width: clamp(120px, 20vw, 180px);
    /* Force GPU layer */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    contain: layout style paint;
}

.bottom-content .logo-item {
    height: clamp(50px, 10vw, 80px);
    width: clamp(120px, 20vw, 180px);
    min-width: clamp(120px, 20vw, 180px);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* filter: none !important; */
    filter: grayscale(100%);
}

.bottom-content .logo-item img {
    max-width: 100%;
    max-height: clamp(40px, 10vw, 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* filter: none !important; */

}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;

}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px); /* Minimal blur for Chrome */
    -webkit-backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.logo-placeholder span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Logo image styles - GPU optimized */
.logo-item img {
    max-width: 100%;
    max-height: clamp(40px, 10vw, 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    /* Force GPU rendering */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    contain: layout style paint;
    image-rendering: -webkit-optimize-contrast;
}

.logo-item:hover img {
    opacity: 1;
    filter: none !important;
}

/* Hide placeholder when logo image is present */
.logo-item:has(img) .logo-placeholder {
    display: none;
}

/* Show placeholder when no image */
.logo-item:not(:has(img)) .logo-placeholder {
    display: flex;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--bg-dark);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}


.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 968px) {
    .left-content {
        padding: clamp(0.75rem, 2vh, 1.5rem) clamp(0.75rem, 2vw, 1.5rem);
        gap: clamp(0.5rem, 1.5vh, 1rem);
    }

    .hero-content-wrapper {
        max-width: min(95vw, 900px);
    }

    .services-text {
        max-width: min(95vw, 600px);
        gap: clamp(0.5rem, 1vh, 0.75rem);
    }

    .service-text-item {
        max-width: min(90vw, 500px);
        padding-left: clamp(0.75rem, 2vw, 1.5rem);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .main-viewport {
        grid-template-rows: min-content 1fr min-content;
        max-height: 100vh;
    }

    .left-content {
        padding: clamp(0.5rem, 1.5vh, 1rem) clamp(0.5rem, 2vw, 1rem);
        gap: clamp(0.5rem, 1vh, 0.75rem);
    }

    .hero-title {
        margin-bottom: clamp(0.25rem, 1vh, 0.5rem);
    }

    .service-text-item {
        padding-left: clamp(0.5rem, 1.5vw, 1rem);
    }

    .bottom-content {
        padding: clamp(0.5rem, 1vh, 0.75rem);
        gap: clamp(0.25rem, 0.8vh, 0.5rem);
    }

    .trusted-by-section {
        height: clamp(50px, 8vh, 80px);
    }

    .logo-item {
        width: clamp(100px, 18vw, 150px);
        min-width: clamp(100px, 18vw, 150px);
        height: clamp(35px, 7vw, 50px);
    }

    .bottom-content .logo-item {
        width: clamp(100px, 18vw, 150px);
        min-width: clamp(100px, 18vw, 150px);
        height: clamp(35px, 7vw, 50px);
    }
}

@media (max-width: 480px) {
    .left-content {
        padding: clamp(0.25rem, 1vh, 0.75rem) clamp(0.5rem, 2vw, 0.75rem);
        gap: clamp(0.25rem, 1vh, 0.5rem);
    }

    .hero-content-wrapper {
        max-width: 98vw;
    }

    .services-text {
        max-width: 95vw;
        gap: clamp(0.25rem, 0.8vh, 0.5rem);
    }

    .hero-title {
        font-size: clamp(1rem, min(5vw, 2.5vh), 2rem);
        margin-bottom: clamp(0.3rem, 1vh, 0.75rem);
    }

    .hero-subtitle {
        font-size: clamp(0.5rem, min(1.2vw, 1.8vh), 0.7rem) !important;
    }

    .service-text-item {
        max-width: 90vw;
        padding: clamp(0.35rem, 0.7vh, 0.65rem) clamp(0.5rem, 1.2vw, 0.75rem);
    }

    .service-text-item h3 {
        font-size: clamp(0.55rem, min(1.1vw, 1.8vh), 0.75rem) !important;
        margin-bottom: clamp(0.05rem, 0.3vh, 0.2rem);
    }

    .service-text-item p {
        font-size: clamp(0.5rem, min(1vw, 1.6vh), 0.7rem) !important;
    }

    .bottom-content {
        padding: clamp(0.25rem, 1vh, 0.5rem);
        gap: clamp(0.25rem, 0.8vh, 0.5rem);
    }

    .trusted-by-section {
        height: clamp(40px, 6vh, 60px);
    }

    .logo-item {
        width: clamp(80px, 16vw, 120px);
        min-width: clamp(80px, 16vw, 120px);
        height: clamp(30px, 6vw, 45px);
    }

    .bottom-content .logo-item {
        width: clamp(80px, 16vw, 120px);
        min-width: clamp(80px, 16vw, 120px);
        height: clamp(30px, 6vw, 45px);
    }
}

/* Small height screens */
@media (max-height: 700px) {
    .left-content {
        padding: clamp(0.3rem, 1vh, 1rem) clamp(0.75rem, 2.5vw, 1.5rem);
        gap: clamp(0.3rem, 1vh, 0.75rem);
    }

    .hero-title {
        font-size: clamp(1rem, min(5vw, 2.8vh), 2.5rem);
        margin-bottom: clamp(0.3rem, 1vh, 0.75rem);
    }

    .hero-subtitle {
        font-size: clamp(0.5rem, min(1.2vw, 1.9vh), 0.8rem) !important;
        line-height: clamp(1.25, 1.5vh, 1.5);
    }

    .services-text {
        gap: clamp(0.3rem, 0.8vh, 0.6rem);
    }

    .service-text-item {
        padding: clamp(0.35rem, 0.7vh, 0.65rem) clamp(0.65rem, 1.8vw, 1.25rem);
    }

    .service-text-item h3 {
        font-size: clamp(0.55rem, min(1.1vw, 1.9vh), 0.8rem) !important;
        margin-bottom: clamp(0.05rem, 0.3vh, 0.2rem);
    }

    .service-text-item p {
        font-size: clamp(0.5rem, min(1vw, 1.7vh), 0.7rem) !important;
        line-height: clamp(1.2, 1.4vh, 1.35);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* Magnetic effect support */
[data-magnetic] {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Cleaner spacing */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    letter-spacing: -0.02em;
}

.service-card h3 {
    letter-spacing: -0.01em;
}

.hero-title {
    letter-spacing: -0.03em;
}
