/* ============================================
   ThinkPrint Totem 43 Dual Screen - Landing Page
   Design: Dark Premium + Neon Accents (2026 Trends)
   Fonts: Inter + Space Grotesk
   ============================================ */

/* Local Fonts - FTP Independent */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/spacegrotesk-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/spacegrotesk-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/spacegrotesk-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/spacegrotesk-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b4b4c4;
    --text-muted: #6b6b80;
    --accent-primary: #7c3aed;
    --accent-secondary: #a855f7;
    --accent-glow: rgba(124, 58, 237, 0.3);
    --accent-neon: #c084fc;
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
    --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(124, 58, 237, 0.3);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ============================================
   FLOATING ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-12px) translateX(8px); }
    66% { transform: translateY(-6px) translateX(-5px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-3deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.2); }
    50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.5), 0 0 80px rgba(124, 58, 237, 0.2); }
}

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

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle-drift {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}

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

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.15;
    animation: particle-drift linear infinite;
}

/* ============================================
   FLOATING DECORATIVE ELEMENTS
   ============================================ */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.08;
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-shape.circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
}

.floating-shape.square {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-secondary);
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite;
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--accent-neon);
    opacity: 0.06;
    animation: floatReverse 12s ease-in-out infinite;
}

.floating-shape.dot {
    width: 8px;
    height: 8px;
    background: var(--accent-neon);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-shape.ring {
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0.05;
    animation: rotate-slow 30s linear infinite;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

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

.nav-logo svg {
    transition: var(--transition-smooth);
}

.nav-logo:hover svg {
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.btn-nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-md);
    color: #25d366;
    font-size: 0.813rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-nav-whatsapp svg {
    width: 16px;
    height: 16px;
}

.btn-nav-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.938rem;
    font-weight: 600;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    color: var(--accent-neon);
    font-size: 0.938rem;
    font-weight: 600;
    transition: var(--transition-spring);
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.hero-stat:hover {
    border-color: var(--border-accent);
    background: var(--gradient-card);
    transform: translateY(-4px);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-neon);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    max-width: 580px;
    filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.2));
    transition: var(--transition-smooth);
}

.hero-image:hover img {
    filter: drop-shadow(0 30px 80px rgba(124, 58, 237, 0.35));
    transform: scale(1.02);
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-neon), var(--text-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    background: var(--bg-secondary);
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.intro-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.intro-image:hover img {
    transform: scale(1.03);
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   DUAL EXPERIENCE
   ============================================ */
.dual-section {
    background: var(--bg-secondary);
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dual-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dual-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.dual-card:hover::before {
    opacity: 1;
}

.dual-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--accent-neon);
}

.dual-card-icon svg {
    width: 28px;
    height: 28px;
}

.dual-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.dual-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.dual-card-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
}

.dual-card-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.dual-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.dual-card-list li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.showcase-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.showcase-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    animation: float 8s ease-in-out infinite;
}

.showcase-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.showcase-image:hover img {
    transform: scale(1.02);
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section {
    background: var(--bg-secondary);
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
}

.advantage-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.advantage-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    position: relative;
}

.events-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.event-tag {
    padding: 10px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition-spring);
    cursor: default;
}

.event-tag:hover {
    border-color: var(--border-accent);
    color: var(--accent-neon);
    background: var(--gradient-card);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

/* ============================================
   MECHANICS SECTION
   ============================================ */
.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mechanic-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
}

.mechanic-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.mechanic-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-neon);
    margin-bottom: 8px;
}

.mechanic-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   BENEFITS BANNER
   ============================================ */
.benefits-banner {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    padding: 28px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
}

.benefit-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
}

.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.games-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.games-intro p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.game-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.game-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.game-card:hover::after {
    transform: scaleX(1);
}

.game-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.game-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.game-tag {
    padding: 4px 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card.featured {
    grid-column: span 3;
    background: var(--gradient-card);
    border-color: var(--border-accent);
    text-align: center;
    padding: 40px;
}

.games-cta {
    text-align: center;
    margin-top: 32px;
}

.games-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 24px;
    font-style: italic;
}

/* ============================================
   DIFFERENTIALS
   ============================================ */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.differential-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.differential-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.differential-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.differential-card:hover::before {
    transform: scaleX(1);
}

.differential-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    color: var(--accent-neon);
    transition: var(--transition-smooth);
}

.differential-card:hover .differential-icon {
    transform: scale(1.1) rotate(5deg);
}

.differential-icon svg {
    width: 24px;
    height: 24px;
}

.differential-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.differential-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: var(--transition-spring);
}

.gallery-item.vertical {
    grid-row: span 2;
    aspect-ratio: 9/16;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(124, 58, 237, 0.5);
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 0.875rem;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 100px;
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-section {
    overflow: hidden;
    position: relative;
}

.clients-track-wrapper {
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.clients-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.clients-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

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

.client-logo {
    height: 36px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.15);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.testimonial-info h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent-neon);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--accent-neon);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--border-accent);
    transform: translateX(6px);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-neon);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.938rem;
    color: var(--text-secondary);
}

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

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-spring);
}

.contact-social a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-neon);
    background: var(--gradient-card);
    transform: translateY(-4px) scale(1.1);
}

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

.contact-whatsapp-box {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-whatsapp-box:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.contact-whatsapp-box h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-whatsapp-box p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25d366;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-spring);
}

.btn-whatsapp-large:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-subtle);
}

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

.footer-text {
    font-size: 0.813rem;
    color: var(--text-muted);
}

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

.footer-links a {
    font-size: 0.813rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-neon);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25d366;
    border-radius: 100px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: var(--transition-spring);
    animation: pulse-glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-menu a:hover {
    color: var(--accent-neon);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE - TABLET (iPad)
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content { max-width: 100%; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 600px; margin: 0 auto; }

    .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
    .dual-grid { grid-template-columns: 1fr; }
    .differentials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .mechanics-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .game-card.featured { grid-column: span 2; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
}

/* ============================================
   RESPONSIVE - MOBILE (iPhone)
   ============================================ */
@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .section-container { padding: 0 20px; }
    .hero { padding: 100px 0 60px; }
    .hero-container { padding: 0 20px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-stat-number { font-size: 1.25rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.75rem; }

    .how-it-works-grid { grid-template-columns: 1fr; }
    .differentials-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .game-card.featured { grid-column: span 1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .benefits-grid { grid-template-columns: 1fr; }

    .gallery-item.vertical { grid-row: span 1; aspect-ratio: 9/12; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

    .footer-container { flex-direction: column; gap: 16px; text-align: center; }

    .whatsapp-float { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.813rem; }

    .lightbox { padding: 20px; }
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .dual-card { padding: 32px 24px; }
    .dual-card-list { grid-template-columns: 1fr; }

    .clients-track { gap: 50px; }
    .client-logo { height: 28px; }

    .impact-text { font-size: 1.25rem; padding: 0 20px; }

    .floating-elements { display: none; }
    .cta-title { font-size: 1.75rem; }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 10px; }
    .hero-stat { padding: 12px; }
    .section-title { font-size: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .events-tags { gap: 8px; }
    .event-tag { padding: 8px 14px; font-size: 0.8rem; }
}

/* ============================================
   PERSONALIZATION SECTION
   ============================================ */
.personalization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.personalization-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.personalization-item:hover {
    border-color: var(--border-accent);
    background: var(--gradient-card);
    transform: translateY(-2px);
}

.personalization-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent-neon);
}

.personalization-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   RESULTS BANNER (inside events section)
   ============================================ */
.results-banner {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    text-align: center;
}

.results-banner h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.results-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.result-item {
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-neon);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.result-item:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: scale(1.05);
}

/* ============================================
   CONTACT BUTTONS
   ============================================ */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
}

/* ============================================
   SHIMMER TEXT ANIMATION
   ============================================ */
.shimmer-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* ============================================
   PULSE GLOW BADGE
   ============================================ */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px var(--accent-glow); }
    50% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(124, 58, 237, 0.1); }
}

/* ============================================
   HERO VIDEO FEATURED (SINGLE COMBINED VIDEO)
   ============================================ */
.hero-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-featured {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 32px;
    overflow: hidden;
    border: 5px solid var(--accent-primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 40px var(--accent-glow);
    z-index: 10;
    background: #000;
}

@media (max-width: 1200px) {
    .hero-composition {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-composition {
        max-width: 320px;
        margin-top: 40px;
    }
    .hero-video-featured {
        border-width: 3px;
    }
}

.float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
}

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

/* ============================================
   VIDEO CAROUSEL
   ============================================ */
.video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.video-item {
    flex: 0 0 240px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9/16;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-spring);
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover img {
    transform: scale(1.1);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition-smooth);
    z-index: 2;
}

.video-item:hover .video-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-primary);
}

.video-play-icon svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.video-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.video-item:hover .video-item-label {
    transform: translateY(0);
}

.video-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.video-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-carousel-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.video-carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   VIDEO LIGHTBOX
   ============================================ */
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-content {
    position: relative;
    height: 90vh;
    aspect-ratio: 9/16;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.video-lightbox-content video {
    width: 100%;
    height: 100%;
}

.video-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-lightbox-close:hover {
    color: var(--accent-neon);
    transform: rotate(90deg);
}

.video-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-lightbox-nav:hover {
    background: var(--accent-primary);
}

.video-lightbox-prev { left: 30px; }
.video-lightbox-next { right: 30px; }

.video-lightbox-nav svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .hero-boomerangs { display: none; }
    .video-item { flex: 0 0 240px; }
    .video-lightbox { padding: 20px; }
    .video-lightbox-nav { display: none; }
}

/* ============================================
   GAMES EXAMPLES - Grid 3x3
   ============================================ */
.games-examples {
    margin-top: 4rem;
    text-align: center;
}

.games-examples-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.games-examples-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.games-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.game-example-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.game-example-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
    border-color: var(--accent-primary);
}

.game-example-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Games Examples Responsive */
@media (max-width: 1024px) {
    .games-examples-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .games-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .games-examples {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .games-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .game-example-item {
        border-radius: 12px;
    }
}

/* ============================================
   RESPONSIVE - Personalization & Results
   ============================================ */
@media (max-width: 768px) {
    .personalization-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .personalization-item {
        padding: 0.75rem 1rem;
    }
    
    .personalization-item span {
        font-size: 0.8rem;
    }
    
    .results-banner {
        padding: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .results-banner h3 {
        font-size: 1.2rem;
    }
    
    .result-item {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn-primary,
    .contact-buttons .btn-secondary {
        text-align: center;
        justify-content: center;
    }
}

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