﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animations */
.anim-fade-up,
.anim-fade-down,
.anim-fade-left,
.anim-fade-right,
.anim-scale,
.anim-rotate,
.anim-blur,
.anim-flip {
    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);
}

.anim-fade-down {
    transform: translateY(-40px);
}

.anim-fade-left {
    transform: translateX(-40px);
}

.anim-fade-right {
    transform: translateX(40px);
}

.anim-scale {
    transform: scale(0.9);
}

.anim-rotate {
    transform: rotate(-5deg) scale(0.95);
}

.anim-blur {
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

.anim-flip {
    transform: perspective(1000px) rotateX(10deg);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Stagger delays */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }
.anim-delay-7 { transition-delay: 0.7s; }
.anim-delay-8 { transition-delay: 0.8s; }

:root {
    --primary: #EB5C2A;
    --primary-dark: #913E1A;
    --primary-light: rgba(235, 92, 42, 0.1);
    --secondary: #341C1B;
    --secondary-light: rgba(52, 28, 27, 0.05);
    --accent: #624437;
    --accent-light: rgba(98, 68, 55, 0.1);
    --success: #22c55e;
    --danger: #ef4444;
    --light: #faf9f7;
    --light-alt: #f5f3f0;
    --dark: #341C1B;
    --gray: #624437;
    --gray-light: #b8a99e;
    --gray-border: #e8e2dc;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(52,28,27,0.06);
    --shadow: 0 4px 20px rgba(52,28,27,0.08);
    --shadow-md: 0 8px 30px rgba(52,28,27,0.1);
    --shadow-lg: 0 20px 60px rgba(52,28,27,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--white);
    background: #0a0605;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Alert */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(235, 92, 42, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 92, 42, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(4px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Header - Cinematic Glassmorphism */
.header {
    background: rgba(5, 3, 2, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(235, 92, 42, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(5, 3, 2, 0.98);
    box-shadow: 0 4px 30px rgba(235, 92, 42, 0.15);
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo span {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(235, 92, 42, 0.5));
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    background: rgba(235, 92, 42, 0.1);
    border: 1px solid rgba(235, 92, 42, 0.2);
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(235, 92, 42, 0.2);
    box-shadow: 0 0 20px rgba(235, 92, 42, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(235, 92, 42, 0.1);
    text-shadow: 0 0 20px rgba(235, 92, 42, 0.5);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(235, 92, 42, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}

.nav-cta {
    margin-left: 16px;
}

.nav-cta .btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.nav-cta .btn::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;
}

.nav-cta .btn:hover::before {
    left: 100%;
}

.nav-cta .btn:hover {
    box-shadow: 0 0 30px rgba(235, 92, 42, 0.5), 0 0 60px rgba(235, 92, 42, 0.2);
    transform: translateY(-2px);
}

/* Hero Section - Cinematic Immersive */
.hero-cinematic {
    background: #050302;
    color: var(--white);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

/* Giant Background Typography */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 300px);
    font-weight: 900;
    color: rgba(235, 92, 42, 0.04);
    white-space: nowrap;
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    animation: bgTextPulse 8s ease-in-out infinite;
}

.hero-bg-text-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 300px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(235, 92, 42, 0.08);
    white-space: nowrap;
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    animation: bgTextPulse 8s ease-in-out infinite reverse;
}

@keyframes bgTextPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

/* Film Grain Overlay */
.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 5;
}

/* Cinematic Bars */
.cinema-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background: #050302;
    z-index: 10;
}

.cinema-bar-top {
    top: 0;
}

.cinema-bar-bottom {
    bottom: 0;
}

/* Floating Code Snippets */
.hero-code-float {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: rgba(235, 92, 42, 0.2);
    z-index: 3;
    pointer-events: none;
}

.hero-code-float span {
    display: block;
    padding: 8px 16px;
    border: 1px solid rgba(235, 92, 42, 0.1);
    background: rgba(235, 92, 42, 0.03);
}

.code-float-1 {
    top: 20%;
    left: 8%;
    animation: codeFloat1 6s ease-in-out infinite;
}

.code-float-2 {
    top: 30%;
    right: 12%;
    animation: codeFloat2 8s ease-in-out infinite;
}

.code-float-3 {
    bottom: 25%;
    left: 15%;
    animation: codeFloat3 7s ease-in-out infinite;
}

.code-float-4 {
    bottom: 35%;
    right: 8%;
    animation: codeFloat4 5s ease-in-out infinite;
}

@keyframes codeFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-15px) rotate(3deg); opacity: 0.6; }
}

@keyframes codeFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(20px) rotate(-2deg); opacity: 0.5; }
}

@keyframes codeFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
    50% { transform: translateY(-10px) rotate(4deg); opacity: 0.55; }
}

@keyframes codeFloat4 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(15px) rotate(-3deg); opacity: 0.6; }
}

/* Main Content */
.hero-cinematic-content {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 1000px;
}

/* Top Line */
.hero-top-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
}

.hero-year {
    color: var(--primary);
    font-weight: 700;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: rgba(235, 92, 42, 0.3);
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.5);
}

/* Title */
.hero-title {
    margin-bottom: 32px;
}

.hero-title-line {
    display: block;
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-title-accent {
    color: var(--primary);
    text-shadow: 0 0 80px rgba(235, 92, 42, 0.3);
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(235, 92, 42, 0.2);
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(235, 92, 42, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

/* Bottom Row */
.hero-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.hero-desc {
    max-width: 450px;
    flex-shrink: 0;
}

.hero-desc p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Cinematic Buttons */
.hero-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cinematic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    white-space: nowrap;
}

.btn-cinematic-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-cinematic-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.6s ease;
}

.btn-cinematic-primary:hover::before {
    left: 100%;
}

.btn-cinematic-primary:hover {
    box-shadow: 0 0 40px rgba(235, 92, 42, 0.5), 0 0 80px rgba(235, 92, 42, 0.2);
    transform: translateY(-3px);
}

.btn-cinematic-primary i {
    transition: transform 0.3s ease;
}

.btn-cinematic-primary:hover i {
    transform: translateX(4px);
}

.btn-cinematic-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cinematic-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(235, 92, 42, 0.05);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: none;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
}

/* Stats */
.stats {
    background: transparent;
    padding: 40px 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(20, 12, 10, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(235, 92, 42, 0.1);
    overflow: hidden;
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(235, 92, 42, 0.1);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(235, 92, 42, 0.05);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
}

/* Tech Stack */
.tech-stack {
    padding: 60px 0;
}

.tech-stack-slider {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tech-slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}

.tech-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.tech-stack-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    height: 56px;
    min-width: fit-content;
    background: rgba(20, 12, 10, 0.8);
    border: 1px solid rgba(235, 92, 42, 0.1);
    border-radius: 50px;
    flex-shrink: 0;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-stack-item i {
    font-size: 22px;
    flex-shrink: 0;
}

.tech-stack-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.tech-stack-item:hover {
    border-color: rgba(235, 92, 42, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tech-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(235, 92, 42, 0.1);
    border: 1px solid rgba(235, 92, 42, 0.2);
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.tech-slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(235, 92, 42, 0.3);
}

.tech-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tech-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tech-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(235, 92, 42, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.tech-slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(20, 12, 10, 0.8);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(235, 92, 42, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(235, 92, 42, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-illustration {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-cartoon {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-illustration {
    transform: scale(1.1) rotate(-3deg);
    animation: cartoonBounce 0.6s ease;
}

@keyframes cartoonBounce {
    0%, 100% { transform: scale(1.1) rotate(-3deg); }
    30% { transform: scale(1.15) rotate(-5deg) translateY(-8px); }
    60% { transform: scale(1.08) rotate(-1deg) translateY(-3px); }
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
}

/* Featured Apps */
.featured-apps {
    padding: 100px 0;
}

.featured-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.featured-apps-card {
    background: rgba(20, 12, 10, 0.8);
    border: 1px solid rgba(235, 92, 42, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.featured-apps-card:hover {
    border-color: rgba(235, 92, 42, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.featured-apps-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-apps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-apps-card:hover .featured-apps-image img {
    transform: scale(1.08);
}

.featured-apps-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.featured-apps-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-apps-content {
    padding: 24px;
}

.featured-apps-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.featured-apps-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.featured-apps-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.featured-apps-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}

.featured-apps-footer {
    display: flex;
    justify-content: flex-end;
}

.featured-apps-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.featured-apps-link i {
    transition: transform 0.3s ease;
    font-size: 11px;
}

.featured-apps-card:hover .featured-apps-link i {
    transform: translateX(4px);
}

/* Why Us Section - Morph 3D */
.why-us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #0a0605;
}

.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.morph {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.morph-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    top: -100px;
    left: -100px;
    animation: morphFloat1 8s ease-in-out infinite;
}

.morph-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    top: 50%;
    right: -80px;
    animation: morphFloat2 10s ease-in-out infinite;
}

.morph-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    bottom: -50px;
    left: 30%;
    animation: morphFloat3 12s ease-in-out infinite;
}

.morph-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    top: 20%;
    left: 50%;
    animation: morphFloat4 9s ease-in-out infinite;
}

@keyframes morphFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 50% 40% 60% 50%; }
    33% { transform: translate(50px, 30px) scale(1.1) rotate(120deg); border-radius: 40% 60% 50% 50%; }
    66% { transform: translate(-20px, 60px) scale(0.95) rotate(240deg); border-radius: 60% 50% 40% 60%; }
}

@keyframes morphFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 50% 50% 40% 60%; }
    33% { transform: translate(-40px, -30px) scale(1.15) rotate(120deg); border-radius: 60% 40% 50% 50%; }
    66% { transform: translate(30px, -50px) scale(0.9) rotate(240deg); border-radius: 40% 60% 60% 40%; }
}

@keyframes morphFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 40% 60% 50% 50%; }
    33% { transform: translate(30px, -40px) scale(1.05) rotate(120deg); border-radius: 50% 50% 60% 40%; }
    66% { transform: translate(-50px, -20px) scale(1.1) rotate(240deg); border-radius: 60% 40% 40% 60%; }
}

@keyframes morphFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 60% 40% 50% 50%; }
    33% { transform: translate(-30px, 40px) scale(0.95) rotate(120deg); border-radius: 50% 60% 40% 50%; }
    66% { transform: translate(40px, 20px) scale(1.08) rotate(240deg); border-radius: 40% 50% 60% 50%; }
}

.why-us .section-header {
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.why-us-card {
    background: rgba(20, 12, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 24px 16px;
    border-radius: 16px;
    border: 1px solid rgba(235, 92, 42, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: cardAppear 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: var(--delay);
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-us-card-morph {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.why-us-card:hover .why-us-card-morph {
    opacity: 1;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 
        0 25px 50px rgba(235, 92, 42, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(235, 92, 42, 0.3);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-illustration {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    transition: var(--transition);
}

.why-us-cartoon {
    width: 100%;
    height: 100%;
}

.why-us-card:hover .why-us-illustration {
    transform: scale(1.1);
}

/* Character Animations */
.why-us-cartoon .character {
    animation: characterBounce 2s ease-in-out infinite;
}

@keyframes characterBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.why-us-cartoon .trophy {
    animation: trophyWiggle 3s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes trophyWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.why-us-cartoon .running {
    animation: runBounce 0.8s ease-in-out infinite;
}

@keyframes runBounce {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-6px) translateX(3px); }
    75% { transform: translateY(-2px) translateX(-2px); }
}

.why-us-cartoon .speed-lines line {
    animation: speedDash 0.6s ease-in-out infinite alternate;
}

.why-us-cartoon .speed-lines line:nth-child(2) {
    animation-delay: 0.15s;
}

.why-us-cartoon .speed-lines line:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes speedDash {
    0% { opacity: 0.1; transform: translateX(-5px); }
    100% { opacity: 0.5; transform: translateX(5px); }
}

.why-us-cartoon .shield {
    animation: shieldPulse 2.5s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.why-us-cartoon .headset {
    animation: headsetBob 2s ease-in-out infinite;
}

@keyframes headsetBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.why-us-cartoon .chat-bubble {
    animation: chatPop 2s ease-in-out infinite;
}

@keyframes chatPop {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

.why-us-cartoon .gem {
    animation: gemFloat 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes gemFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(3deg); }
}

.why-us-cartoon .sparkles circle {
    animation: sparkle 1.5s ease-in-out infinite;
}

.why-us-cartoon .sparkles circle:nth-child(2) {
    animation-delay: 0.3s;
}

.why-us-cartoon .sparkles circle:nth-child(3) {
    animation-delay: 0.6s;
}

.why-us-cartoon .sparkles circle:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

.why-us-cartoon .coins {
    animation: coinsBounce 2s ease-in-out infinite;
}

@keyframes coinsBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.why-us-cartoon .hand {
    animation: handWave 2s ease-in-out infinite;
    transform-origin: right center;
}

@keyframes handWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-10deg); }
}

.why-us-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    transform: translateZ(10px);
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.5;
    transform: translateZ(5px);
}

/* Team Home Section */
.team-home {
    padding: 100px 0;
    background: #0a0605;
}

.team-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.team-home-card {
    background: rgba(20, 12, 10, 0.8);
    padding: 32px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(235, 92, 42, 0.1);
    text-align: center;
    transition: var(--transition);
}

.team-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(235, 92, 42, 0.3);
}

.team-home-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    transition: var(--transition);
}

.team-home-card:hover .team-home-avatar {
    border-color: var(--primary);
}

.team-home-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-home-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.team-home-card p {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-home-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-home-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(235, 92, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: var(--transition);
}

.team-home-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.team-home-cta {
    text-align: center;
}

/* CTA Section */
.cta {
    background: rgba(20, 12, 10, 0.9);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(235, 92, 42, 0.1);
    border-bottom: 1px solid rgba(235, 92, 42, 0.1);
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(235, 92, 42, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 17px;
    margin-bottom: 36px;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.cta .btn {
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    background: #050302;
    color: var(--white);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 92, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 17px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* About */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-text p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(20, 12, 10, 0.8);
    border: 1px solid rgba(235, 92, 42, 0.1);
    border-radius: var(--radius-sm);
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.about-illustration {
    font-size: 220px;
    color: var(--primary);
    opacity: 0.05;
    text-align: center;
}

/* Team */
.team {
    padding: 60px 0;
    background: #0a0605;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: rgba(20, 12, 10, 0.8);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(235, 92, 42, 0.1);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(235, 92, 42, 0.3);
}

.team-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    transition: var(--transition);
}

.team-card:hover .team-avatar {
    border-color: var(--primary);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}

.team-card p {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(235, 92, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    font-size: 14px;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Values */
.values {
    padding: 60px 0;
    background: #0a0605;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 44px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(235, 92, 42, 0.1);
    transition: var(--transition);
    background: rgba(20, 12, 10, 0.8);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(235, 92, 42, 0.3);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: rgba(235, 92, 42, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.value-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Services List */
.services-list {
    padding: 60px 0 100px;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px;
    margin-bottom: 24px;
    background: rgba(20, 12, 10, 0.8);
    border-radius: var(--radius);
    border: 1px solid rgba(235, 92, 42, 0.1);
    transition: var(--transition);
}

.service-detail:hover {
    border-color: rgba(235, 92, 42, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.service-detail-number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(235, 92, 42, 0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: rgba(235, 92, 42, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
    transition: var(--transition);
}

.service-detail:hover .service-detail-icon {
    background: rgba(235, 92, 42, 0.15);
    transform: scale(1.05);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content .overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.service-detail-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 800;
}

.service-detail-content p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    font-size: 14px;
}

/* Pricing CTA */
.pricing-cta {
    background: rgba(20, 12, 10, 0.5);
    padding: 80px 0;
    text-align: center;
}

.pricing-cta .overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.pricing-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--white);
}

/* Contact */
.contact-content {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
    font-size: 16px;
}

.info-list {
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(235, 92, 42, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.info-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.social-links-lg {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(235, 92, 42, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: rgba(20, 12, 10, 0.8);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(235, 92, 42, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(235, 92, 42, 0.15);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(10, 6, 5, 0.8);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(235, 92, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* Footer */
.footer {
    background: #050302;
    color: var(--white);
    padding: 80px 0 0;
    border-top: 1px solid rgba(235, 92, 42, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-light);
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-light);
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--gray-light);
    font-size: 14px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050302;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: 16px;
    animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(235, 92, 42, 0.4));
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loading-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.loading-bar {
    width: 160px;
    height: 2px;
    background: rgba(235, 92, 42, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 8px;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ff8c5a);
    border-radius: 4px;
    transition: width 0.15s ease;
    box-shadow: 0 0 10px var(--primary);
}

.loading-percent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(235, 92, 42, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(235, 92, 42, 0.5);
}

/* Error Page */
.error-page {
    padding: 120px 0;
    text-align: center;
}

.error-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.3;
}

.error-content h1 {
    font-size: 140px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
}

.error-content p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
    font-size: 16px;
}

/* About Mission */
.about-mission { padding: 60px 0; }
.mission-list { display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin: 0 auto; }
.mission-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: rgba(20, 12, 10, 0.8); border: 1px solid rgba(235, 92, 42, 0.1); border-radius: var(--radius-sm); transition: var(--transition); }
.mission-item:hover { border-color: rgba(235, 92, 42, 0.3); transform: translateX(4px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
.mission-icon { width: 48px; height: 48px; background: rgba(235, 92, 42, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); flex-shrink: 0; }
.mission-text h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.mission-text p { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

/* About History / Timeline */
.about-history { padding: 60px 0; }
.timeline { position: relative; max-width: 600px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: rgba(235, 92, 42, 0.15); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -40px; top: 2px; width: 18px; height: 18px; background: var(--primary); border-radius: 50%; border: 3px solid #0a0605; box-shadow: 0 0 12px rgba(235, 92, 42, 0.3); z-index: 1; }
.timeline-year { display: inline-block; font-size: 12px; font-weight: 700; color: var(--primary); background: rgba(235, 92, 42, 0.1); padding: 3px 10px; border-radius: 4px; margin-bottom: 8px; }
.timeline-content h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }

/* Footer */
.footer { background: #050302; color: var(--white); padding: 80px 0 0; border-top: 1px solid rgba(235, 92, 42, 0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-col h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-col h4 { font-size: 15px; margin-bottom: 20px; color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col p { color: var(--gray-light); margin-bottom: 20px; font-size: 14px; line-height: 1.8; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--gray-light); transition: var(--transition); font-size: 14px; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.contact-info li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--gray-light); font-size: 14px; }
.contact-info li i { color: var(--primary); margin-top: 3px; width: 16px; text-align: center; }
.footer-bottom { text-align: center; padding: 24px 0; margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); color: var(--gray-light); font-size: 14px; }

/* Error Page */
.error-page { padding: 120px 0; text-align: center; }
.error-icon { font-size: 80px; color: var(--primary); margin-bottom: 24px; opacity: 0.3; }
.error-content h1 { font-size: 140px; color: var(--primary); margin-bottom: 8px; font-weight: 800; line-height: 1; }
.error-content h2 { font-size: 28px; margin-bottom: 16px; color: var(--white); font-weight: 700; }
.error-content p { color: rgba(255, 255, 255, 0.5); margin-bottom: 36px; font-size: 16px; }

/* Loading Screen */
.loading-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #050302; z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity 0.4s ease, visibility 0.4s ease; }
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-content { text-align: center; }
.loading-logo { margin-bottom: 16px; animation: loadingPulse 1.2s ease-in-out infinite; }
.loading-logo img { height: 40px; width: auto; filter: drop-shadow(0 0 15px rgba(235, 92, 42, 0.4)); }
@keyframes loadingPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.05); opacity: 1; } }
.loading-text { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: 0.1em; margin-bottom: 24px; }
.loading-bar { width: 160px; height: 2px; background: rgba(235, 92, 42, 0.15); border-radius: 4px; overflow: hidden; margin: 0 auto 8px; }
.loading-bar-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary), #ff8c5a); border-radius: 4px; transition: width 0.15s ease; box-shadow: 0 0 10px var(--primary); }
.loading-percent { font-size: 11px; color: rgba(255, 255, 255, 0.3); font-weight: 600; letter-spacing: 0.1em; }

/* Back to Top Button */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(235, 92, 42, 0.4); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(235, 92, 42, 0.5); }

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 { font-size: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .team-home-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-apps-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
    .nav-menu { position: fixed; top: 80px; left: 0; width: 100%; height: auto; max-height: 0; background: rgba(10, 6, 5, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; border-bottom: 1px solid rgba(235, 92, 42, 0.1); }
    .nav-menu.active { max-height: calc(100vh - 80px); padding: 16px 24px 24px; overflow-y: auto; }
    .nav-item { width: 100%; }
    .nav-link { padding: 14px 16px; width: 100%; justify-content: flex-start; color: rgba(255, 255, 255, 0.7); font-size: 16px; border-radius: var(--radius-sm); }
    .nav-link:hover, .nav-link.active { background: rgba(235, 92, 42, 0.1); color: var(--primary); }
    .nav-link.active::after { display: none; }
    .nav-cta { margin-left: 0; margin-top: 8px; width: 100%; }
    .nav-cta .btn { width: 100%; justify-content: center; padding: 14px; }
    .hero-cinematic { min-height: auto; padding: 120px 0 50px; }
    .hero-bg-text, .hero-bg-text-outline { font-size: 48px; }
    .cinema-bar { height: 20px; }
    .hero-top-line { font-size: 10px; letter-spacing: 0.12em; gap: 8px; margin-bottom: 16px; }
    .hero-title-line { font-size: 32px; }
    .hero-title-accent { padding: 6px 14px; }
    .hero-title-accent::after { inset: -3px; }
    .hero-title { margin-bottom: 20px; }
    .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-desc { max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-cinematic { width: 100%; justify-content: center; padding: 14px 24px; font-size: 12px; }
    .stats { padding: 0 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 24px 16px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 11px; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 14px; }
    .services-preview, .featured-apps, .why-us, .team-home, .values, .contact-content, .about-content, .about-mission, .about-history { padding: 60px 0; }
    .services-grid, .featured-apps-grid, .why-us-grid, .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-illustration { width: 110px; height: 110px; }
    .service-card { padding: 28px 20px; }
    .featured-apps-image { height: 160px; }
    .featured-apps-content { padding: 16px; }
    .featured-apps-header h3 { font-size: 15px; }
    .featured-apps-content p { font-size: 12px; }
    .morph { display: none; }
    .why-us-card { padding: 28px 20px; }
    .why-us-illustration { width: 110px; height: 110px; }
    .team-home-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .team-home-card { padding: 20px 12px; }
    .team-home-avatar { width: 56px; height: 56px; }
    .team-home-card h3 { font-size: 13px; }
    .team-home-card p { font-size: 10px; }
    .team-home-social a { width: 28px; height: 28px; font-size: 11px; }
    .service-detail { flex-direction: column; text-align: center; padding: 28px 20px; gap: 24px; }
    .service-detail.reverse { flex-direction: column; }
    .service-detail-number { font-size: 40px; }
    .service-detail-icon { width: 90px; height: 90px; font-size: 36px; }
    .service-detail-content h2 { font-size: 20px; }
    .service-detail-content p { font-size: 14px; }
    .feature-list { grid-template-columns: 1fr; text-align: left; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text h2 { font-size: 24px; }
    .about-text p { font-size: 14px; }
    .feature-item { padding: 10px 12px; gap: 10px; }
    .feature-item span { font-size: 13px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .team-card { padding: 20px 12px; }
    .team-avatar { width: 70px; height: 70px; }
    .team-card h3 { font-size: 14px; }
    .team-card p { font-size: 11px; }
    .team-social a { width: 32px; height: 32px; font-size: 12px; }
    .value-card { padding: 28px 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info h2, .contact-form-wrapper h2 { font-size: 22px; }
    .contact-form { padding: 20px 16px; }
    .info-item { gap: 12px; margin-bottom: 20px; }
    .info-icon { width: 40px; height: 40px; font-size: 16px; }
    .social-links-lg { flex-wrap: wrap; }
    .cta { padding: 60px 0; }
    .cta h2 { font-size: 26px; }
    .cta p { font-size: 14px; }
    .cta .btn { width: 100%; justify-content: center; }
    .page-header { padding: 120px 0 40px; }
    .page-header h1 { font-size: 28px; }
    .page-header p { font-size: 14px; }
    .mission-item { padding: 16px 18px; gap: 12px; }
    .mission-icon { width: 42px; height: 42px; font-size: 18px; }
    .timeline { padding-left: 30px; }
    .timeline-dot { left: -30px; width: 14px; height: 14px; }
    .footer { padding: 50px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col h3 { font-size: 18px; }
    .footer-col h4 { font-size: 14px; }
    .footer-col p { font-size: 13px; }
    .footer-bottom { padding: 16px 0; font-size: 12px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
    .loading-text { font-size: 18px; }
    .error-page { padding: 80px 0; }
    .error-content h1 { font-size: 80px; }
    .error-content h2 { font-size: 22px; }
    .error-icon { font-size: 50px; }
    .tech-stack-item { height: 48px; padding: 0 16px; gap: 8px; }
    .tech-stack-item i { font-size: 18px; }
    .tech-stack-item span { font-size: 11px; }
    .tech-slider-btn { width: 36px; height: 36px; font-size: 14px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title-line { font-size: 26px; }
    .hero-bg-text, .hero-bg-text-outline { font-size: 36px; }
    .hero-title-accent { padding: 4px 10px; font-size: 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stat-item { padding: 20px 12px; }
    .stat-number { font-size: 28px; }
    .section-header h2 { font-size: 22px; }
    .team-home-grid { grid-template-columns: 1fr 1fr; }
    .team-home-card { padding: 16px 10px; }
    .team-home-avatar { width: 48px; height: 48px; }
    .team-home-card h3 { font-size: 12px; }
    .team-home-card p { font-size: 9px; }
    .team-grid { grid-template-columns: 1fr; }
    .btn-cinematic { padding: 12px 20px; font-size: 11px; }
    .page-header h1 { font-size: 24px; }
    .cta h2 { font-size: 22px; }
}

@media (hover: none) and (pointer: coarse) {
    .btn, .btn-cinematic { min-height: 48px; }
    .nav-link { min-height: 44px; }
    .form-group input, .form-group textarea { min-height: 48px; font-size: 16px; }
    .social-links a, .team-social a, .team-home-social a, .back-to-top { min-width: 44px; min-height: 44px; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer-bottom { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .morph { display: none; }
}
