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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e5e5e5;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Loading Sequence */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 600ms ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
    animation: loadingProgress 2s ease-out forwards;
}

@keyframes loadingProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Premium Animated Background */
.premium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

/* Noise/Grain Overlay */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: noiseMove 20s linear infinite;
}

@keyframes noiseMove {
    0%, 100% { transform: translate(0px, 0px); }
    10% { transform: translate(-5px, -10px); }
    20% { transform: translate(-10px, 5px); }
    30% { transform: translate(5px, -5px); }
    40% { transform: translate(-5px, -10px); }
    50% { transform: translate(-10px, 10px); }
    60% { transform: translate(10px, 5px); }
    70% { transform: translate(0px, -10px); }
    80% { transform: translate(-5px, 0px); }
    90% { transform: translate(5px, -5px); }
}

/* Enhanced Gradient Layers */
.gradient-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.layer-1 {
    background: radial-gradient(ellipse 100% 60% at 50% -10%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    animation: layerFloat1 25s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(ellipse 80% 40% at 80% 120%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: layerFloat2 30s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(ellipse 120% 80% at 20% 60%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    animation: layerFloat3 35s ease-in-out infinite;
}

@keyframes layerFloat1 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    25% { transform: translate(-20px, -15px) scale(1.05); }
    50% { transform: translate(15px, -10px) scale(0.95); }
    75% { transform: translate(-10px, 15px) scale(1.02); }
}

@keyframes layerFloat2 {
    0%, 100% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
    33% { transform: translate(25px, -20px) scale(1.08) rotate(1deg); }
    66% { transform: translate(-15px, 25px) scale(0.92) rotate(-1deg); }
}

@keyframes layerFloat3 {
    0%, 100% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
    20% { transform: translate(-30px, 10px) scale(1.1) rotate(0.5deg); }
    40% { transform: translate(20px, -25px) scale(0.9) rotate(-0.5deg); }
    60% { transform: translate(10px, 20px) scale(1.05) rotate(0.3deg); }
    80% { transform: translate(-15px, -10px) scale(0.95) rotate(-0.3deg); }
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 12px;
    top: 20%;
    left: 10%;
    animation: shapeFloat1 20s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation: shapeFloat2 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899, #3b82f6);
    border-radius: 16px;
    top: 40%;
    right: 30%;
    animation: shapeFloat3 30s ease-in-out infinite;
    transform: rotate(45deg);
}

.shape-4 {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 6px;
    top: 60%;
    left: 25%;
    animation: shapeFloat4 22s ease-in-out infinite;
}

.shape-5 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    border-radius: 50%;
    top: 30%;
    left: 70%;
    animation: shapeFloat5 28s ease-in-out infinite reverse;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
    75% { transform: translate(-40px, 30px) rotate(270deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(-25px, 35px) scale(1.2); }
    66% { transform: translate(40px, -25px) scale(0.8); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: rotate(45deg) translate(0px, 0px); }
    20% { transform: rotate(65deg) translate(-30px, 20px); }
    40% { transform: rotate(25deg) translate(25px, -30px); }
    60% { transform: rotate(85deg) translate(-15px, -15px); }
    80% { transform: rotate(5deg) translate(20px, 25px); }
}

@keyframes shapeFloat4 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -30px) rotate(45deg) scale(1.3); }
    50% { transform: translate(-30px, 10px) rotate(90deg) scale(0.7); }
    75% { transform: translate(15px, 25px) rotate(135deg) scale(1.1); }
}

@keyframes shapeFloat5 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    30% { transform: translate(-35px, -20px) scale(1.1); }
    60% { transform: translate(20px, 40px) scale(0.9); }
}

/* Cursor Follow Light */
.cursor-light {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 200ms ease;
    opacity: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

h2 {
    font-size: 48px;
    font-weight: 500;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 1.5em;
}

/* Token-Driven Button System */
.btn {
    /* Base button tokens */
    --btn-radius: 12px;
    --btn-transition: all 200ms cubic-bezier(0.23, 1, 0.32, 1);
    --btn-focus-ring: 0 0 0 2px rgba(59, 130, 246, 0.5);
    --btn-disabled-opacity: 0.5;
    
    /* Base styles */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: var(--btn-transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    
    /* Focus accessibility */
    outline: none;
    focus-visible: {
        box-shadow: var(--btn-focus-ring);
    }
}

.btn:focus-visible {
    box-shadow: var(--btn-focus-ring);
}

.btn:disabled {
    opacity: var(--btn-disabled-opacity);
    cursor: not-allowed;
    pointer-events: none;
}

/* Size variants */
.btn-sm {
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
}

.btn-default {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.btn-lg {
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
}

/* Semantic variants */
.btn-hero {
    /* Ultra-clean glass with animated gradient border */
    height: 58px;
    padding: 0 36px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    background: linear-gradient(45deg, #3b82f6, #6366f1, #8b5cf6, #ec4899, #3b82f6);
    background-size: 300% 300%;
    border-radius: 16px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    z-index: -1;
    animation: gradientRotate 6s linear infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.btn-hero:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 16px 40px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-hero:active {
    transform: translateY(-1px) scale(1.01);
    transition-duration: 100ms;
}


.btn-cta-secondary {
    /* Subtle bordered CTA */
    height: 44px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #a1a1aa;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #a1a1aa;
    border: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.btn-link {
    height: auto;
    padding: 0;
    background: transparent;
    color: #3b82f6;
    border: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 400;
}

.btn-link:hover {
    color: #8b5cf6;
    text-decoration: none;
}

.btn-destructive {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-destructive:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ffffff;
    border-color: rgba(239, 68, 68, 0.5);
}

/* Icon integration */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
}

.btn-icon-sm {
    width: 32px;
    height: 32px;
    padding: 0;
}

.btn-icon-lg {
    width: 48px;
    height: 48px;
    padding: 0;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 400ms ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo span {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 300ms ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 300ms ease;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 32px;
    padding: 80px 32px;
}

.mobile-nav-content a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
    transition: all 300ms ease;
    min-width: 200px;
    text-align: center;
}

.mobile-nav-content a:hover {
    color: #3b82f6;
    border-bottom-color: rgba(59, 130, 246, 0.3);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.mobile-break {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 120%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 20% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    animation: heroGradientShift 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGradientShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 0.8;
    }
}

.hero-headline {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.rotating-language {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    min-width: 0;
    width: auto;
    text-align: left;
    animation: glow 3s ease-in-out infinite alternate;
    position: relative;
    height: 1.2em;
    vertical-align: top;
    white-space: nowrap;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5)); }
}

.hero-subheadline {
    font-size: 22px;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 48px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

/* Sections with Enhanced Spacing */
.section {
    padding: 140px 0;
    position: relative;
}

/* Advanced Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.glass-card.scroll-animate {
    transform: translateY(40px) scale(0.98) rotateX(5deg);
}

.glass-card.scroll-animate.animate-in {
    transform: translateY(0) scale(1) rotateX(0deg);
}

.process-step.scroll-animate {
    transform: translateY(50px) scale(0.9) rotateY(10deg);
}

.process-step.scroll-animate.animate-in {
    transform: translateY(0) scale(1) rotateY(0deg);
}

/* Typography Breathing - Enhanced Spacing */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Glass morphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 20px;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* What is Transcreation Section */
.what-is-transcreation {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

/* Modern Transcreation Layout */
.transcreation-layout {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.definition-boxes {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.definition-box {
    text-align: center;
    padding: 48px 40px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-title {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.box-text {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.005em;
}

/* Animated Connector */
.connector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.animated-connector {
    position: relative;
    width: 80px;
    height: 2px;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.connector-dot {
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    animation: connectorMove 3s ease-in-out infinite;
}

@keyframes connectorMove {
    0%, 100% { left: -5px; }
    50% { left: calc(100% - 5px); }
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.differentiator-item {
    text-align: center;
}

.feature-symbol {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.differentiator-item p {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.glass-card p {
    margin: 0;
    font-size: 16px;
    color: #e5e5e5;
}

/* How It Works Section */
.how-it-works {
    background: #0a0a0a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 32px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.process-step h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.process-step p {
    font-size: 16px;
    color: #a1a1aa;
}

.process-step.glass-card {
    display: block;
    text-align: center;
}

.cta-wrapper {
    text-align: center;
}

/* For Freelancers Section */
.for-freelancers {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    color: #d4d4d8;
    font-size: 20px;
}

.requirements {
    max-width: 600px;
    margin: 0 auto 64px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 300ms ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(8px);
}

.bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.requirement-item p {
    margin: 0;
    font-size: 16px;
    color: #e5e5e5;
}

/* About Founder Section */
.about-founder {
    background: #0a0a0a;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-photo {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}


.founder-photo a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 300ms ease, opacity 300ms ease;
}

.founder-photo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: inherit;
}

.founder-bio p {
    margin-bottom: 24px;
    color: #d4d4d8;
    font-size: 18px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-bio a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms ease;
    border-bottom: 1px solid transparent;
}

.founder-bio a:hover {
    color: #8b5cf6;
    border-bottom-color: rgba(139, 92, 246, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .container {
        padding: 0 32px;
    }

    .hero {
        min-height: 100vh;
        padding: 140px 0 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-headline {
        font-size: 42px;
        letter-spacing: -0.01em;
        margin-bottom: 32px;
    }
    
    .hero-headline br.mobile-break {
        display: block;
    }

    .rotating-language {
        min-width: 0;
        height: 1.1em;
        display: block;
        margin: 16px auto 48px;
        text-align: center;
    }

    .hero-subheadline {
        font-size: 19px;
        margin-bottom: 48px;
        line-height: 1.7;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 17px;
        line-height: 1.7;
    }

    .section {
        padding: 80px 0;
    }
    
    /* Mobile-optimized definition quote */
    .quote-mark {
        font-size: 80px;
        margin-bottom: 16px;
    }
    
    .transcreation-layout {
        margin-bottom: 60px;
    }
    
    .definition-boxes {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .connector-wrapper {
        display: none;
    }
    
    .definition-box {
        padding: 40px 32px;
        min-height: auto;
    }
    
    .box-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .box-text {
        font-size: 18px;
        line-height: 1.7;
        margin: 0;
    }
    
    /* Reduce floating shapes opacity on mobile */
    .shape {
        opacity: 0.03;
        transform: scale(0.7);
    }
    
    /* Disable cursor light on mobile */
    .cursor-light {
        display: none;
    }
    
    /* Optimize loading sequence for mobile */
    .loading-logo {
        font-size: 28px;
    }
    
    .loading-bar {
        width: 160px;
    }
    
    /* Better mobile button spacing */
    .hero-cta {
        margin-top: 40px;
    }
    
    /* Enhanced scroll animations less aggressive on mobile */
    .scroll-animate {
        transform: translateY(30px) scale(0.98);
    }
    
    .glass-card.scroll-animate {
        transform: translateY(20px) scale(0.99);
    }
    
    .process-step.scroll-animate {
        transform: translateY(25px) scale(0.95);
    }

    .differentiators {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }

    .glass-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 32px;
        padding: 48px 32px;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .process-step {
        padding: 56px 32px;
        margin-bottom: 24px;
    }
    
    .about-founder {
        padding: 100px 0;
    }
    
    .founder-bio p {
        margin-bottom: 32px;
        font-size: 17px;
        line-height: 1.7;
    }
    
    .requirements {
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .requirement-item {
        padding: 24px 20px;
        margin-bottom: 20px;
        gap: 16px;
    }
    
    .bullet {
        width: 6px;
        height: 6px;
    }

    .btn:not(.btn-sm):not(.btn-ghost):not(.btn-link) {
        width: 100%;
        min-width: auto;
    }

    .bg-orb {
        opacity: 0.3;
    }
    
    .nav-container {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Better touch targets for mobile */
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }
    
    .btn-sm {
        min-height: 40px;
        padding: 8px 16px;
    }
    
    
    .footer {
        padding: 48px 0 24px;
        margin-top: 60px;
    }
    
    .footer-container {
        padding: 0 24px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-brand {
        text-align: left;
        max-width: none !important;
        margin-bottom: 32px;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 32px;
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
        width: 100%;
        overflow: hidden;
    }
    
    .footer-section h4 {
        margin-bottom: 16px;
        font-size: 16px;
    }
    
    .footer-section a {
        margin-bottom: 12px;
        font-size: 14px;
        display: block;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: left;
        padding-top: 24px;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
    
    /* Fix mobile footer overflow */
    .footer-section a[href*="mailto"] {
        word-break: break-all;
        font-size: 13px;
        line-height: 1.5;
        display: block;
        max-width: 100%;
    }
    
    .footer-section .btn {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
    }
    
    .hero-headline {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    
    .hero-headline br.mobile-break {
        display: block;
    }

    .rotating-language {
        display: block;
        margin: 16px auto 48px;
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 95%;
    }
    
    .transcreation-layout {
        margin-bottom: 48px;
    }
    
    .definition-boxes {
        gap: 28px;
        margin-bottom: 40px;
    }
    
    .definition-box {
        padding: 36px 28px;
        min-height: auto;
    }
    
    .box-title {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .box-text {
        font-size: 17px;
        line-height: 1.7;
    }
    
    .section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .requirement-item {
        padding: 20px 16px;
        margin-bottom: 16px;
        gap: 14px;
    }
    
    .bullet {
        width: 5px;
        height: 5px;
    }
    
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-container {
        padding: 0 24px;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 24px;
    }
    
    .footer-brand {
        max-width: none !important;
        margin-bottom: 24px;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 24px;
    }
    
    .footer-section {
        margin-bottom: 24px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    /* Fix mobile footer overflow on small phones */
    .footer-section a[href*="mailto"] {
        word-break: break-word;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-section .btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .quote-mark {
        font-size: 60px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
}

/* Tablets */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero-headline {
        font-size: 52px;
    }

    h2 {
        font-size: 40px;
    }

    .differentiators {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transcreation-layout {
        margin-bottom: 64px;
    }
    
    .definition-boxes {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 56px;
    }
    
    .connector-wrapper {
        display: none;
    }
    
    .definition-box {
        padding: 44px 36px;
        min-height: auto;
    }
    
    .box-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .box-text {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* Smooth scrolling enhancements */
* {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.8s ease-out;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
* {
    scrollbar-width: none;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 64px 0 32px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    display: block;
}

.footer-tagline {
    color: #a1a1aa;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 300ms ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section .btn {
    display: inline-flex;
    margin-top: 8px;
    margin-bottom: 0;
}

.footer-section a:hover {
    color: #ffffff;
}


.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 300ms ease;
}

.footer-bottom-links a:hover {
    color: #a1a1aa;
}