/* ===============================================
   KLIVID - Estudio Creativo
   Premium Styles v2.0
   =============================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg: #050507;
    --color-bg-secondary: #0a0a0f;
    --color-bg-tertiary: #0f0f16;
    --color-bg-card: #111118;
    --color-text: #ffffff;
    --color-text-secondary: #9898a8;
    --color-text-muted: #505060;
    --color-accent: #6366f1;
    --color-accent-light: #818cf8;
    --color-accent-dark: #4f46e5;
    --color-gradient-1: #6366f1;
    --color-gradient-2: #a855f7;
    --color-gradient-3: #ec4899;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-light: rgba(255, 255, 255, 0.12);
    --color-glow: rgba(99, 102, 241, 0.4);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    --space-4xl: 12rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--color-accent);
    color: var(--color-text);
}

img, video {
    max-width: 100%;
    display: block;
}

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

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

/* Noise Texture Overlay */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-text);
}

.cursor-follower {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), background 0.3s ease;
}

.cursor--active {
    transform: translate(-50%, -50%) scale(0);
}

.follower--active {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower {
        display: none;
    }
    body, button, a {
        cursor: auto;
    }
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    margin-bottom: var(--space-lg);
}

.loader-icon {
    width: 60px;
    height: 60px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 10vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 480px) {
    .loader-text {
        font-size: 1.75rem;
        letter-spacing: 0.15em;
    }
    .loader-icon {
        width: 50px;
        height: 50px;
    }
    .loader-tagline {
        font-size: 0.6875rem;
        letter-spacing: 0.2em;
    }
}

.loader-text span {
    display: inline-block;
    animation: loadLetter 1.2s ease-in-out infinite;
}

.loader-text span:nth-child(1) { animation-delay: 0s; }
.loader-text span:nth-child(2) { animation-delay: 0.08s; }
.loader-text span:nth-child(3) { animation-delay: 0.16s; }
.loader-text span:nth-child(4) { animation-delay: 0.24s; }
.loader-text span:nth-child(5) { animation-delay: 0.32s; }
.loader-text span:nth-child(6) { animation-delay: 0.4s; }

@keyframes loadLetter {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-8px); }
}

.loader-tagline {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-gradient-1), var(--color-gradient-2));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) clamp(1.5rem, 4vw, 4rem);
    transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
    padding: var(--space-sm) clamp(1.5rem, 4vw, 4rem);
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .nav {
        padding: var(--space-sm) var(--space-md);
    }
    .nav.scrolled {
        padding: 10px var(--space-md);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .logo-icon {
        width: 36px;
        height: 36px;
    }
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gradient-1), var(--color-gradient-2));
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 20px;
    background: var(--color-text);
    color: var(--color-bg);
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta .nav-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-link--cta:hover {
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    color: var(--color-text);
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--color-glow);
}

.nav-link--cta:hover .nav-icon {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-right: -10px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.menu-toggle:active {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--color-bg);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    pointer-events: auto;
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 1;
}

.mobile-menu-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--color-accent);
}

.mobile-link-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 10vw, 5rem);
    font-weight: 700;
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .mobile-link-text {
        font-size: 2rem;
    }
    .mobile-link-number {
        font-size: 0.75rem;
    }
}

.mobile-link:hover .mobile-link-text {
    color: var(--color-accent);
}

.mobile-menu-footer {
    margin-top: var(--space-2xl);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out-expo) 0.3s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-footer a {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.mobile-social {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-md);
}

.mobile-social a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.mobile-social a:hover {
    color: var(--color-text);
}

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

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear;
}

@media (min-width: 1024px) {
    .hero-video {
        width: 70%;
        height: 80%;
        border-radius: var(--radius-xl);
        mask-image: radial-gradient(ellipse 100% 100% at center, black 40%, transparent 75%);
        -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, black 40%, transparent 75%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 7, 0.3) 0%,
        rgba(5, 5, 7, 0.5) 40%,
        rgba(5, 5, 7, 0.8) 70%,
        rgba(5, 5, 7, 1) 100%
    );
}

/* Difuminado lateral en PC */
.hero-overlay::before,
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    pointer-events: none;
}

.hero-overlay::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}

.hero-overlay::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg) 0%, transparent 100%);
}

@media (max-width: 1024px) {
    .hero-overlay::before,
    .hero-overlay::after {
        display: none;
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 70%);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: var(--space-3xl) var(--space-lg);
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero-content {
        padding: 0 var(--space-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        min-height: 100dvh;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 var(--space-sm);
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-tag {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-tag {
        padding: 6px 14px;
        font-size: 0.625rem;
        letter-spacing: 0.12em;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
    }
    .tag-line {
        display: none;
    }
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--color-glow);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.tag-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-border-light), transparent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: var(--space-sm);
    }
}

.title-line {
    display: block;
}

.title-word {
    display: inline-block;
    animation: wordReveal 1s var(--ease-out-expo) both;
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.title-line em {
    font-style: italic;
    color: var(--color-text-secondary);
}

.highlight {
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2), var(--color-gradient-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: clamp(0.9375rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    animation: fadeInUp 1s var(--ease-out-expo) 1.2s both;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-description {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: var(--space-md);
        padding: 0;
        max-width: 320px;
    }
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-out-expo) 1.4s both;
}

@media (max-width: 768px) {
    .hero-cta {
        margin-bottom: var(--space-3xl);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        padding: 0;
        margin-bottom: calc(var(--space-3xl) + var(--space-lg));
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    cursor: none;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

.btn-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.4s var(--ease-out-expo);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    color: var(--color-text);
    box-shadow: 0 20px 60px var(--color-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-light);
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text);
}

.btn-outline-gradient {
    background: transparent;
    border: 1px solid transparent;
    background-image: linear-gradient(var(--color-bg), var(--color-bg)), linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: var(--color-text);
}

.btn-outline-gradient:hover {
    background-image: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2)), linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    box-shadow: 0 20px 60px var(--color-glow);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeInUp 1s var(--ease-out-expo) 1.6s both;
}

@media (max-width: 768px) {
    .hero-scroll {
        display: none;
    }
}

.scroll-text {
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-text);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: var(--space-xl);
    right: clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 1s var(--ease-out-expo) 1.8s both;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-text), var(--color-text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--color-border-light), transparent);
}

@media (max-width: 768px) {
    .hero-stats {
        position: absolute;
        bottom: var(--space-lg);
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        justify-content: center;
        gap: var(--space-lg);
        background: rgba(5, 5, 7, 0.6);
        backdrop-filter: blur(10px);
        padding: var(--space-md) var(--space-lg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--color-border);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: var(--space-md);
        padding: var(--space-sm) var(--space-md);
        bottom: var(--space-md);
        width: calc(100% - var(--space-lg));
        max-width: 320px;
    }
    .stat-number {
        font-size: 1.25rem;
    }
    .stat-plus {
        font-size: 0.875rem;
    }
    .stat-label {
        font-size: 0.5625rem;
        letter-spacing: 0.1em;
    }
    .stat-divider {
        height: 30px;
    }
}

/* Hero Floating Elements */
.hero-float {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-float--1 {
    width: 400px;
    height: 400px;
    background: var(--color-gradient-1);
    opacity: 0.15;
    top: 10%;
    left: -10%;
    animation: float1 20s ease-in-out infinite;
}

.hero-float--2 {
    width: 300px;
    height: 300px;
    background: var(--color-gradient-2);
    opacity: 0.1;
    bottom: 20%;
    right: -5%;
    animation: float2 25s ease-in-out infinite;
}

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

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

/* Marquee */
.marquee {
    padding: var(--space-md) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
}

@media (max-width: 480px) {
    .marquee {
        padding: var(--space-sm) 0;
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    padding-right: var(--space-xl);
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Intro Section */
.intro {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

@media (max-width: 768px) {
    .intro {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .intro {
        padding: var(--space-xl) 0;
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.intro-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.intro-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.intro-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.intro-text {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.9;
}

.intro-visual {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo) 0.2s;
}

.intro-visual.revealed {
    opacity: 1;
    transform: translateY(0);
}

.intro-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.intro-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.05);
}

.intro-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 7, 0.8) 100%);
}

.intro-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
}

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

.badge-icon svg {
    width: 100%;
    height: 100%;
}

/* Section Headers */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header:not(.section-header--center) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: end;
}

@media (max-width: 768px) {
    .section-header:not(.section-header--center) {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.section-header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.tag-number {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-muted);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
    line-height: 1.8;
}

.section-header-desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Services Section */
.services {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

@media (max-width: 768px) {
    .services {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .services {
        padding: var(--space-xl) 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out-expo);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--color-border-light);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .service-card-image {
        height: 160px;
    }
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-card) 100%);
}

.service-card-content {
    padding: var(--space-xl);
    position: relative;
}

@media (max-width: 480px) {
    .service-card-content {
        padding: var(--space-lg);
    }
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.25rem;
    }
}

.service-desc {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-lg);
}

.service-features li {
    font-size: 0.75rem;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-accent-light);
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--color-accent);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Work Section */
.work {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

@media (max-width: 768px) {
    .work {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .work {
        padding: var(--space-xl) 0;
    }
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
}

.work-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out-expo);
    grid-column: span 4;
}

.work-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.work-card--featured {
    grid-column: span 8;
}

@media (max-width: 1024px) {
    .work-card {
        grid-column: span 6;
    }
    .work-card--featured {
        grid-column: span 12;
    }
}

@media (max-width: 640px) {
    .work-card,
    .work-card--featured {
        grid-column: span 12;
    }
}

.work-card-link {
    display: block;
    position: relative;
    height: 100%;
}

.work-card-media {
    position: relative;
    aspect-ratio: 16/12;
    overflow: hidden;
}

.work-card--featured .work-card-media {
    aspect-ratio: 16/9;
}

.work-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.work-card:hover .work-card-media img {
    transform: scale(1.08);
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 7, 0.9) 100%);
}

.work-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
}

@media (max-width: 480px) {
    .work-card-content {
        padding: var(--space-lg);
    }
}

.work-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.work-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-accent-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.work-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.work-card:hover .work-title {
    color: var(--color-accent-light);
}

.work-desc {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-client {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.work-card-cta {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-text);
    color: var(--color-bg);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease-out-expo);
}

.work-card-cta svg {
    width: 14px;
    height: 14px;
}

.work-card:hover .work-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.work-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Process Section */
.process {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

@media (max-width: 768px) {
    .process {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .process {
        padding: var(--space-xl) 0;
    }
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

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

@media (max-width: 640px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.process-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}

@media (max-width: 1024px) {
    .process-line {
        display: none;
    }
}

.process-step {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out-expo);
}

.process-step.revealed {
    opacity: 1;
    transform: translateY(0);
}

.step-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .step-marker {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px var(--color-glow);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content {}

.step-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.step-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

@media (max-width: 768px) {
    .about {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .about {
        padding: var(--space-xl) 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.about-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.about-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    margin-bottom: var(--space-xl);
}

.about-text p {
    color: var(--color-text-secondary);
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.value-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
}

.value-text {
    font-size: 0.9375rem;
    font-weight: 500;
}

.about-visual {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo) 0.2s;
}

.about-visual.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-image-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image--main {
    grid-column: span 8;
    aspect-ratio: 4/3;
}

.about-image--secondary {
    grid-column: span 4;
    aspect-ratio: 3/4;
}

.about-image--tertiary {
    grid-column: span 5;
    grid-row: 2;
    aspect-ratio: 4/3;
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    animation: floatCard 4s ease-in-out infinite;
}

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

.floating-card-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.floating-card-text {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Clients Section */
.clients {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .clients {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .clients {
        padding: var(--space-xl) 0;
    }
}

.clients-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.clients-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

@media (max-width: 900px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    transition: all 0.4s var(--ease-out-expo);
}

.client-logo:hover {
    border-color: var(--color-border-light);
    color: var(--color-text);
    transform: translateY(-4px);
}

.client-logo svg {
    width: 100%;
    height: 40px;
}

/* Testimonials */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

@media (max-width: 768px) {
    .testimonials {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: var(--space-xl) 0;
    }
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out-expo);
}

.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--color-border-light);
}

.testimonial-quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
}

.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    position: relative;
}

@media (max-width: 480px) {
    .testimonial-quote {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: var(--space-lg);
    }
    .testimonial-quote-mark {
        font-size: 4rem;
        top: 0;
        left: var(--space-md);
    }
    .testimonial-card {
        padding: var(--space-lg);
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-border);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

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

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

@media (max-width: 768px) {
    .cta-section {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: var(--space-xl) 0;
    }
}

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

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

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(5, 5, 7, 0.8) 50%, var(--color-bg) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: var(--space-xl);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.cta-title span {
    display: block;
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: var(--space-md);
    }
    .cta-desc {
        font-size: 0.9375rem;
    }
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.cta-buttons {
    margin-bottom: var(--space-xl);
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

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

.social-link:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-sm);
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .footer-tagline {
        font-size: 0.875rem;
    }
    .footer-desc {
        font-size: 0.8125rem;
    }
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-text);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.footer-social a {
    display: inline-flex;
    padding: 8px 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

.footer-credit {
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
