/**
 * MERCALOGISTIC PUBLICIDAD Y SERVICIOS, S.A. DE C.V.
 * Landing Page - Estilos CSS
 *
 * Diseño: Cinematográfico / Agencia Creativa
 * Paleta: Azul oscuro/teal, Púrpura a Magenta (gradiente del logo)
 */

/* ========================================
   CSS Variables - Paleta Cinematográfica
======================================== */
:root {
    /* Colores principales - basados en el logo */
    --color-primary: #a855f7;
    --color-primary-light: #c084fc;
    --color-primary-dark: #9333ea;
    --color-secondary: #ec4899;
    --color-accent: #d946ef;

    /* Gradiente principal (del logo) */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a855f7 25%, #d946ef 50%, #ec4899 75%, #f472b6 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(236, 72, 153, 0.8) 100%);
    --gradient-text: linear-gradient(135deg, #c084fc 0%, #f472b6 100%);
    --gradient-glow: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(236, 72, 153, 0.4) 100%);

    /* Colores de fondo - teal oscuro del logo */
    --color-dark: #0a1628;
    --color-dark-800: #0d1f35;
    --color-dark-700: #122a45;
    --color-dark-600: #1a3a5c;
    --color-surface: #0f2137;

    /* Colores neutros */
    --color-gray: #64748b;
    --color-gray-light: #94a3b8;
    --color-gray-lighter: #cbd5e1;
    --color-light: #f1f5f9;
    --color-white: #ffffff;

    /* Tipografía */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    /* Espaciado */
    --container-width: 1280px;
    --section-padding: 120px;

    /* Bordes y sombras */
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(168, 85, 247, 0.5);

    /* Transiciones */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index */
    --z-cursor: 9999;
    --z-loader: 9998;
    --z-header: 1000;
    --z-modal: 900;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-dark);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--color-dark);
}

html::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-white);
    background-color: var(--color-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ========================================
   Custom Cursor
======================================== */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .custom-cursor,
    .cursor-follower {
        display: block;
    }

    body {
        cursor: none;
    }

    a, button, .magnetic {
        cursor: none;
    }
}

body.cursor-hover .custom-cursor {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    mix-blend-mode: normal;
    opacity: 0.2;
}

body.cursor-hover .cursor-follower {
    width: 80px;
    height: 80px;
    border-color: var(--color-primary);
}

/* ========================================
   Page Loader - Cinematográfico
======================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.film-reel {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.reel-circle {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-secondary);
    border-radius: 50%;
    animation: spinReel 1s linear infinite;
}

.reel-holes {
    position: absolute;
    inset: 15px;
    animation: spinReel 2s linear infinite reverse;
}

.reel-holes span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.reel-holes span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.reel-holes span:nth-child(2) { top: 15%; right: 0; }
.reel-holes span:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.reel-holes span:nth-child(4) { bottom: 15%; right: 0; }
.reel-holes span:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.reel-holes span:nth-child(6) { bottom: 15%; left: 0; }
.reel-holes span:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.reel-holes span:nth-child(8) { top: 15%; left: 0; }

@keyframes spinReel {
    to { transform: rotate(360deg); }
}

.loader-text {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.loader-text span {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gray-light);
    animation: loadPulse 1.5s ease-in-out infinite;
}

.loader-text span:nth-child(1) { animation-delay: 0s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.3s; }
.loader-text span:nth-child(5) { animation-delay: 0.4s; }
.loader-text span:nth-child(6) { animation-delay: 0.5s; }
.loader-text span:nth-child(7) { animation-delay: 0.6s; }
.loader-text span:nth-child(8) { animation-delay: 0.7s; }

@keyframes loadPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

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

.loader-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
    0% { width: 0%; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0%; margin-left: 100%; }
}

/* ========================================
   Container
======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ========================================
   Typography
======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary-light);
    margin-bottom: 20px;
}

.tag-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--color-primary-light);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    max-width: 600px;
    line-height: 1.8;
}

/* ========================================
   Buttons - Cinematográficos
======================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

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

.btn-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: 0;
    transition: var(--transition-base);
}

.btn-primary:hover .btn-glow {
    opacity: 0.5;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(168, 85, 247, 0.4);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.btn-outline:hover {
    border-color: transparent;
}

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

.btn-outline .btn-content {
    position: relative;
    z-index: 2;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1rem;
}

/* ========================================
   Header - Glassmorphism
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.logo img {
    height: 75px;
    width: auto;
    transition: var(--transition-base);
}

.header.scrolled .logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 12px 20px;
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-base);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-header .btn-icon svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius);
    z-index: 1001;
    transition: var(--transition-base);
}

.hamburger:hover {
    background: rgba(168, 85, 247, 0.2);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ========================================
   Hero Section - Cinematográfico
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--color-dark);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    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");
    opacity: 0.03;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Partículas */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 15s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-40px) translateX(10px);
        opacity: 0.6;
    }
}

/* Film strips decorativos */
.film-strip {
    position: absolute;
    width: 60px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 20px,
        rgba(168, 85, 247, 0.1) 20px,
        rgba(168, 85, 247, 0.1) 40px,
        transparent 40px,
        transparent 60px,
        rgba(168, 85, 247, 0.05) 60px,
        rgba(168, 85, 247, 0.05) 80px
    );
    opacity: 0.5;
    z-index: 1;
}

.film-strip::before,
.film-strip::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 8px,
        rgba(168, 85, 247, 0.2) 8px,
        rgba(168, 85, 247, 0.2) 16px
    );
}

.film-strip::before { left: 5px; }
.film-strip::after { right: 5px; }

.film-strip-left {
    left: 0;
    animation: filmScroll 20s linear infinite;
}

.film-strip-right {
    right: 0;
    animation: filmScroll 25s linear infinite reverse;
}

@keyframes filmScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 14px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--border-radius-full);
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.tag-icon svg {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

.tag-text {
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary-light);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line .word {
    display: inline-block;
    color: var(--color-white);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(100%);
}

.title-line:nth-child(1) .word { animation-delay: 0.5s; }
.title-line:nth-child(2) .word:nth-child(1) { animation-delay: 0.6s; }
.title-line:nth-child(2) .word:nth-child(2) { animation-delay: 0.7s; }
.title-line:nth-child(3) .word { animation-delay: 0.8s; }

.title-line .highlight {
    color: var(--color-primary-light);
}

.title-line .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stat {
    position: relative;
}

.stat-number {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number .number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-number .plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.stat-decoration {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 16/10;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
}

.corner-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.corner-tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.corner-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

.rec-indicator {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rec-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: recBlink 1s ease-in-out infinite;
}

@keyframes recBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.rec-text {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 2px;
}

.timecode {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-light);
    letter-spacing: 1px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.float-element svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary-light);
}

.element-1 {
    top: -30px;
    right: -30px;
    animation: float1 6s ease-in-out infinite;
}

.element-2 {
    bottom: 20%;
    left: -40px;
    animation: float2 8s ease-in-out infinite;
}

.element-3 {
    bottom: -20px;
    right: 20%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 15px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -10px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -20px) rotate(10deg); }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-text {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gray-light);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--border-radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

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

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

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    overflow: hidden;
    z-index: 5;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gray);
}

.marquee-track .separator {
    color: var(--color-primary);
}

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

/* ========================================
   About Section
======================================== */
.about {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-dark-800);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.about-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.1);
    top: -100px;
    right: -100px;
}

.about-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.08);
    bottom: -100px;
    left: -100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* About Visual */
.about-visual {
    position: relative;
}

.visual-stack {
    position: relative;
}

.stack-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.stack-main {
    aspect-ratio: 4/3;
    background: var(--color-dark-700);
}

.stack-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark-700) 0%, var(--color-dark-600) 100%);
    border: 2px dashed rgba(168, 85, 247, 0.3);
    border-radius: var(--border-radius-lg);
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
}

.placeholder-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
}

.image-placeholder span {
    font-size: 0.875rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-placeholder.small {
    width: 100%;
    height: 100%;
    gap: 8px;
}

.image-placeholder.small .placeholder-icon {
    width: 40px;
    height: 40px;
}

.image-placeholder.small .placeholder-icon svg {
    width: 20px;
    height: 20px;
}

.image-frame {
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--border-radius-xl);
    pointer-events: none;
}

.stack-secondary {
    position: absolute;
    width: 180px;
    height: 120px;
    bottom: -30px;
    right: -30px;
    background: var(--color-dark-700);
    box-shadow: var(--shadow-xl);
    z-index: 5;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.stack-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 24px 28px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
    z-index: 10;
}

.badge-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    line-height: 1.4;
}

/* About Content */
.about-content {
    position: relative;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--color-gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-white);
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 28px 24px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ========================================
   Services Section
======================================== */
.services {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-dark);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.section-header.centered {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--color-dark-800);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.service-card .card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card .card-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(var(--color-dark-800), var(--color-dark-800)) padding-box,
                var(--gradient-primary) border-box;
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover .card-bg {
    opacity: 1;
}

.service-card:hover .card-border {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.service-card:hover .card-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.service-card:hover .card-icon svg {
    color: var(--color-white);
}

.card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(168, 85, 247, 0.3);
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
}

.card-text {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-light);
    transition: var(--transition-fast);
}

.card-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.card-link:hover {
    color: var(--color-white);
}

.card-link:hover svg {
    transform: translateX(5px);
}

.card-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* ========================================
   Portfolio Section
======================================== */
.portfolio {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-dark-800);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 60px;
}

.section-header-left {
    flex: 1;
}

.section-header-right {
    max-width: 400px;
    font-size: 1rem;
    color: var(--color-gray-light);
    text-align: right;
    line-height: 1.8;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.portfolio-placeholder {
    aspect-ratio: auto;
    height: 100%;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-light);
    background: rgba(168, 85, 247, 0.2);
    border-radius: var(--border-radius-full);
    margin-bottom: 12px;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0;
}

.project-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.project-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.portfolio-item:hover .project-link {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Process Section
======================================== */
.process {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(168, 85, 247, 0.2);
    z-index: 0;
}

.line-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

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

.step-marker {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.marker-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    transition: var(--transition-base);
}

.process-step:hover .marker-ring {
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.marker-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition-base);
}

.process-step:hover .marker-dot {
    opacity: 0;
}

.process-step:hover .marker-number {
    opacity: 1;
}

.step-content {
    padding: 0 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius);
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.process-step:hover .step-icon svg {
    color: var(--color-white);
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

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

/* ========================================
   CTA Section
======================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-dark-800) 0%, var(--color-dark) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text {
    max-width: 600px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    line-height: 1.8;
}

.cta-actions {
    flex-shrink: 0;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-dark-800);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.contact-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.1);
    top: -200px;
    left: -200px;
}

.contact-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.08);
    bottom: -150px;
    right: -150px;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--color-dark);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.contact-info-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.contact-info-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-white);
}

.contact-info-card-content h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.contact-info-card-content a,
.contact-info-card-content span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.6;
}

.contact-info-card-content a:hover {
    color: var(--color-primary-light);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--color-dark);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.contact-form-header {
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.contact-form-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--color-white);
    background: var(--color-dark-800);
    border: 2px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    background: var(--color-dark-700);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--color-dark-800);
    color: var(--color-white);
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 36px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-submit .btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

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

/* Contact Map Container */
.contact-map-container {
    background: var(--color-dark);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.map-header {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.map-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.map-header p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.map-wrapper {
    height: 300px;
    background: var(--color-dark-700);
}

.map-wrapper iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.8;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.map-address svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.map-address div {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    line-height: 1.6;
}

.map-address strong {
    color: var(--color-white);
}

/* ========================================
   Footer
======================================== */
.footer {
    position: relative;
    padding: 80px 0 0;
    background: var(--color-dark);
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--border-radius);
    color: var(--color-gray-light);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--color-primary-light);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

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

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--color-gray);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
}

/* ========================================
   Animations
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .timeline-line {
        display: none;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header-right {
        text-align: left;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        background: var(--color-dark);
        border-left: 1px solid rgba(168, 85, 247, 0.1);
        transition: right var(--transition-base);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    }

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

    .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .film-strip {
        display: none;
    }

    .hero-marquee {
        display: none;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item,
    .portfolio-item.large {
        grid-column: span 1;
        height: 250px;
    }

    /* Process Mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-marker {
        width: 100px;
        height: 100px;
    }

    /* Contact Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .contact-form-header {
        padding: 24px;
    }

    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

    .hero-tag {
        padding: 8px 14px;
    }

    .tag-text {
        font-size: 0.6875rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 16px 28px;
    }

    .stat-number .number {
        font-size: 2.25rem;
    }

    .experience-badge {
        padding: 18px 22px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 24px;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-card-icon {
        margin: 0 auto;
    }

    .map-address {
        flex-direction: column;
        text-align: center;
    }

    .map-address svg {
        margin: 0 auto;
    }
}

/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

body.menu-open {
    overflow: hidden;
}

/* Dark overlay when menu is open */
body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.8);
    z-index: 998;
}

/* ========================================
   Shape Dividers - Transiciones entre secciones
======================================== */
.shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.shape-divider-bottom {
    bottom: 0;
}

.shape-divider-top {
    top: 0;
    transform: rotate(180deg);
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.shape-divider svg path {
    fill: var(--color-dark-800);
    transition: fill 0.3s ease;
}

/* Variantes de dividers */
.hero .shape-divider svg path {
    fill: var(--color-dark-800);
}

.about .shape-divider.wave-2 svg path {
    fill: var(--color-dark);
}

.services .shape-divider.diagonal svg path {
    fill: var(--color-dark-800);
}

.portfolio .shape-divider.curve svg path {
    fill: var(--color-dark);
}

.process .shape-divider.triangle svg path {
    fill: var(--color-dark-800);
}

.cta-section .shape-divider.wave-3 svg path {
    fill: var(--color-dark-800);
}

/* Divider con gradiente animado */
.shape-divider.animated svg path {
    animation: dividerGlow 4s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0 transparent);
    }
    50% {
        filter: drop-shadow(0 -5px 20px rgba(168, 85, 247, 0.3));
    }
}

/* Divider sizes */
.shape-divider.tall svg {
    height: 120px;
}

.shape-divider.short svg {
    height: 50px;
}

/* ========================================
   Parallax Effects
======================================== */
[data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Parallax shapes */
.about-shape.shape-1 {
    animation: floatParallax1 20s ease-in-out infinite;
}

.about-shape.shape-2 {
    animation: floatParallax2 25s ease-in-out infinite;
}

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

@keyframes floatParallax2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-40px, 20px) scale(1.08);
    }
    66% {
        transform: translate(30px, -30px) scale(0.92);
    }
}

/* Contact shapes parallax */
.contact-shape.shape-1 {
    animation: floatParallax1 18s ease-in-out infinite;
}

.contact-shape.shape-2 {
    animation: floatParallax2 22s ease-in-out infinite reverse;
}

/* ========================================
   Enhanced Reveal Animations - Stagger
======================================== */

/* Base reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal from right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal scale */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Reveal rotate */
.reveal-rotate {
    opacity: 0;
    transform: translateY(40px) rotate(-5deg);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Stagger animations for grid items */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.stagger-item:nth-child(1) { transition-delay: 0s; }
.stagger-item:nth-child(2) { transition-delay: 0.1s; }
.stagger-item:nth-child(3) { transition-delay: 0.2s; }
.stagger-item:nth-child(4) { transition-delay: 0.3s; }
.stagger-item:nth-child(5) { transition-delay: 0.4s; }
.stagger-item:nth-child(6) { transition-delay: 0.5s; }
.stagger-item:nth-child(7) { transition-delay: 0.6s; }
.stagger-item:nth-child(8) { transition-delay: 0.7s; }

/* Service cards stagger */
.services-grid .service-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.services-grid .service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.35s; }

/* Portfolio items stagger */
.portfolio-grid .portfolio-item {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-grid .portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-grid .portfolio-item:nth-child(1) { transition-delay: 0s; }
.portfolio-grid .portfolio-item:nth-child(2) { transition-delay: 0.1s; }
.portfolio-grid .portfolio-item:nth-child(3) { transition-delay: 0.15s; }
.portfolio-grid .portfolio-item:nth-child(4) { transition-delay: 0.2s; }
.portfolio-grid .portfolio-item:nth-child(5) { transition-delay: 0.25s; }

/* Process steps stagger */
.process-timeline .process-step {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.process-timeline .process-step:nth-child(2) { transition-delay: 0s; }
.process-timeline .process-step:nth-child(3) { transition-delay: 0.15s; }
.process-timeline .process-step:nth-child(4) { transition-delay: 0.3s; }
.process-timeline .process-step:nth-child(5) { transition-delay: 0.45s; }

/* Feature cards stagger */
.about-features .feature-card {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease;
}

.about-features .feature-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-features .feature-card:nth-child(1) { transition-delay: 0s; }
.about-features .feature-card:nth-child(2) { transition-delay: 0.1s; }
.about-features .feature-card:nth-child(3) { transition-delay: 0.2s; }

/* Contact info cards stagger */
.contact-info-cards .contact-info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.contact-info-cards .contact-info-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-cards .contact-info-card:nth-child(1) { transition-delay: 0s; }
.contact-info-cards .contact-info-card:nth-child(2) { transition-delay: 0.1s; }
.contact-info-cards .contact-info-card:nth-child(3) { transition-delay: 0.2s; }

/* ========================================
   Smooth Section Transitions
======================================== */

/* Sections with proper z-index and overflow */
.hero,
.about,
.services,
.portfolio,
.process,
.cta-section,
.contact {
    position: relative;
    z-index: 1;
}

/* Ensure dividers are above backgrounds */
.shape-divider {
    z-index: 10;
}

/* Section backgrounds smooth transition */
section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* ========================================
   Scroll-triggered Glow Effects
======================================== */
.glow-on-scroll {
    position: relative;
}

.glow-on-scroll::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.glow-on-scroll.in-view::after {
    opacity: 1;
}

/* ========================================
   Text Reveal Animation
======================================== */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.visible span {
    transform: translateY(0);
}

/* Split text animation */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotate(10deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.split-text.visible .char {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ========================================
   Hover Lift Effect
======================================== */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

/* ========================================
   Smooth Color Transitions
======================================== */
.color-transition {
    transition: color 0.3s ease,
                background-color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* ========================================
   Loading States
======================================== */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-dark-700) 25%,
        var(--color-dark-600) 50%,
        var(--color-dark-700) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Responsive Dividers
======================================== */
@media (max-width: 768px) {
    .shape-divider svg {
        height: 50px;
    }

    .shape-divider.tall svg {
        height: 80px;
    }

    .shape-divider.short svg {
        height: 30px;
    }

    /* Reduce animation complexity on mobile */
    .about-shape,
    .contact-shape {
        animation-duration: 30s;
    }

    /* Simplify stagger on mobile */
    .services-grid .service-card,
    .portfolio-grid .portfolio-item,
    .process-timeline .process-step {
        transition-delay: 0s !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shape-divider.animated svg path,
    .about-shape,
    .contact-shape,
    [data-parallax],
    .parallax-bg {
        animation: none;
        transition: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-rotate,
    .stagger-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
