/* Clean Lermess Styles - NO SQUARES! */


:root {
    --primary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --dark-bg: rgba(15, 23, 42, 0.8);
    --border-blue: rgba(59, 130, 246, 0.2);
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Projects Logos Section */
.projects-logos-section {
    padding: 4rem 0;
    background: transparent;
}

.logos-row {
    display: flex;
    justify-content: space-between; /* Spread logos across full width */
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap; /* Force single line */
    padding: 0 2rem; /* Add padding to bring closer to edges */
}

.logo-item {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: grayscale(0%);
}

.project-logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0; /* Prevent shrinking */
}

/* Responsive Design for Logos */
@media (max-width: 768px) {
    .logos-row {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .project-logo {
        height: 80px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .logos-row {
        gap: 0.5rem;
        justify-content: space-between;
        padding: 0 0.5rem;
    }
    
    .project-logo {
        height: 70px;
        max-width: 140px;
    }
}

/* Specific logo customizations */
.sony-logo {
    height: 120px !important;
    max-width: 240px !important;
}

/* All logos - grayscale by default, flicker animation on hover */
.logo-hover-effect {
    filter: grayscale(100%); /* Default grayscale - visible but not colored */
    transition: none; /* Remove smooth transition for flicker effect */
}

.logo-item:hover .logo-hover-effect {
    animation: logoFlicker 0.6s ease-in-out;
    filter: grayscale(0%); /* End state - colored */
}

/* Keyframe animation for logo flicker effect */
@keyframes logoFlicker {
    0% {
        filter: grayscale(100%); /* Start grayscale */
    }
    15% {
        filter: brightness(0); /* Flash to black */
    }
    30% {
        filter: brightness(0); /* Stay black briefly */
    }
    50% {
        filter: grayscale(100%); /* Back to grayscale */
    }
    100% {
        filter: grayscale(0%); /* Final colored state */
    }
}

/* Keyframe animation for MoonPay - flicker but end white */
@keyframes logoFlickerWhite {
    0% {
        filter: brightness(0) invert(1); /* Start white */
    }
    15% {
        filter: brightness(0); /* Flash to black */
    }
    30% {
        filter: brightness(0); /* Stay black briefly */
    }
    50% {
        filter: brightness(0) invert(1); /* Back to white */
    }
    100% {
        filter: brightness(0) invert(1); /* Final state - white */
    }
}

/* MoonPay logo - white with flicker animation, ends white */
.moonpay-logo {
    filter: brightness(0) invert(1); /* Default white */
    transition: none;
}

.logo-item:hover .moonpay-logo {
    animation: logoFlickerWhite 0.6s ease-in-out;
    filter: brightness(0) invert(1); /* End state - stays white */
}

/* Responsive adjustments for custom logos */
@media (max-width: 768px) {
    .sony-logo {
        height: 100px !important;
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    .sony-logo {
        height: 90px !important;
        max-width: 180px !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(15, 23, 42, 0.95) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    padding: 12px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.6) 20%, 
        rgba(6, 182, 212, 0.6) 50%, 
        rgba(139, 92, 246, 0.6) 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

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

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

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.nav-logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
}

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

.nav-logo .logo-text:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.025em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(6, 182, 212, 0.1) 100%);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

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

/* Navigation styles cleaned up */

/* Logo pulse effect */
@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.5));
    }
}

.nav-logo .logo-text:hover {
    animation: logoPulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #93c5fd;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-text {
    background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 24px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
    color: #3b82f6;
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.premium-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.premium-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

.premium-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.premium-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.premium-btn.secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    align-items: center;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #3b82f6;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section {
    padding: 120px 0;
}

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

.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.section-number {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
}

/* About Section */
.about-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #fff;
}

.about-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-button {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-button:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.capability-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.capability-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Parallax Text Section */
.parallax-text-section {
    height: 40vh;
    position: relative;
    overflow: visible;
    background: transparent;
    display: flex;
    align-items: flex-start;
    padding-top: 5vh;
    width: 100vw;
}

.parallax-container {
    width: 400%;
    height: 100%;
    position: relative;
    overflow: visible;
    left: -150%;
}

.parallax-text {
    position: absolute;
    top: 20%;
    left: 25%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(
        90deg,
        rgba(59, 130, 246, 1) 0%,
        rgba(147, 197, 253, 1) 25%,
        rgba(6, 182, 212, 1) 50%,
        rgba(139, 92, 246, 1) 75%,
        rgba(59, 130, 246, 1) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    letter-spacing: 0.05em;
    will-change: transform;
    transition: transform 0.1s ease-out;
    text-shadow: none;
}

/* Responsive adjustments for parallax text */
@media (max-width: 768px) {
    .parallax-text-section {
        height: 30vh;
        padding-top: 3vh;
    }
    
    .parallax-container {
        width: 500%;
        left: -200%;
    }
    
    .parallax-text {
        font-size: clamp(4rem, 12vw, 8rem);
        top: 15%;
        left: 20%;
    }
}

@media (max-width: 480px) {
    .parallax-text-section {
        height: 25vh;
        padding-top: 2vh;
    }
    
    .parallax-container {
        width: 600%;
        left: -250%;
    }
    
    .parallax-text {
        font-size: clamp(3rem, 15vw, 6rem);
        letter-spacing: 0.02em;
        top: 10%;
        left: 16.67%;
    }
}

/* Engagements section - always visible */
.engagements-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.engagements-section.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Engagements header and description - always visible */
.engagements-section .section-header,
.engagements-section .engagements-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Engagement cards - with animations */
.engagements-section .engagement-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.engagements-section .engagement-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Other sequential items keep their original animation behavior */
.engagements-section .sequential-item:not(.engagement-item) {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Other sections with animations */
.sequential-item:not(.engagements-section .sequential-item) {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sequential-item:not(.engagements-section .sequential-item).revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Work Videos Section */
.work-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.work-video-item {
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid var(--border-blue);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-video-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.video-container {
    position: relative;
    background: #000;
}

.work-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    /* Aggressive performance optimizations */
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(0.9) brightness(0.9);
    pointer-events: none;
}


.video-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.work-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.work-status.live {
    background: rgba(34, 197, 94, 0.95);
    color: #ffffff;
    border: 1px solid #22c55e;
}

.work-status.in-progress {
    background: rgba(59, 130, 246, 0.95);
    color: #ffffff;
    border: 1px solid var(--primary-blue);
}

.work-category {
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.video-info {
    padding: 2rem;
}

.video-info .work-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-info .work-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Videos */
@media (max-width: 768px) {
    .work-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .work-video {
        height: 180px;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-info .work-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .work-videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-video {
        height: 160px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-status {
        top: 0.5rem;
        left: 0.5rem;
        gap: 0.25rem;
    }
    
    .work-status,
    .work-category {
        padding: 0.25rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.work-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.work-status {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 8px;
}

.work-category {
    color: #3b82f6;
    font-size: 14px;
    margin-bottom: 16px;
}

.work-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

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

/* Navigation Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo .logo-text {
        font-size: 22px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .nav-logo .logo-text {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 4px 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* Additional Essential Styles */

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.2));
    padding: 0.2em 0.5em;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.badge-separator {
    color: rgba(59, 130, 246, 0.6);
}

/* Title Lines and Underlines */
.title-line {
    position: relative;
    display: block;
    margin-bottom: 0.5rem;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineGrow 1.5s ease forwards;
    animation-delay: 0.8s;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

.section-number {
    color: rgba(59, 130, 246, 0.8);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

/* Button Particles and Effects */
.btn-particles,
.btn-glow,
.btn-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-btn:hover .btn-particles,
.premium-btn:hover .btn-glow,
.premium-btn:hover .btn-shine {
    opacity: 1;
}

.btn-glow {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.btn-shine {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 2s infinite;
}

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

/* Container Improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing */
.section {
    padding: 5rem 0;
    position: relative;
}

/* Hero Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Premium Button Improvements */
.premium-btn {
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

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

/* Footer Improvements */
.footer {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.footer-copyright,
.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}