@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0A1D43;
    --vibrant-cyan: #0096D6;
    --mint-green: #4ED6A4;
    --secondary-gray: #57595B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-blue);
    color: #ffffff;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 214, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 214, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--vibrant-cyan);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--mint-green);
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Typography */
.mono {
    font-family: 'Space Mono', monospace;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Navigation scrollée - fond blanc */
nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Logo blanc sur fond transparent */
nav:not(.scrolled) .logo {
    color: white;
    -webkit-text-fill-color: white;
}

/* Logo coloré sur fond blanc */
nav.scrolled .logo {
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Logo blanc visible par défaut */
.logo-white {
    opacity: 1;
}

.logo-color {
    opacity: 0;
    position: absolute;
}

/* Sur scroll, inverser la visibilité des logos */
nav.scrolled .logo-white {
    opacity: 0;
}

nav.scrolled .logo-color {
    opacity: 1;
}

/* Toggle mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav.scrolled .menu-toggle span {
    background: var(--primary-blue);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

/* Liens blancs sur fond transparent */
nav:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

/* Liens foncés sur fond blanc */
nav.scrolled .nav-links a {
    color: var(--primary-blue);
}

.nav-links a:hover {
    color: var(--mint-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint-green);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 214, 164, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
}

.label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 150, 214, 0.1);
    border: 1px solid var(--vibrant-cyan);
    border-radius: 50px;
    color: var(--mint-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 0 40px rgba(78, 214, 164, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.button-secondary {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--vibrant-cyan);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.button-secondary:hover {
    background: rgba(0, 150, 214, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 150, 214, 0.2);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 214, 164, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--mint-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 214, 164, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Featured Product - PengMe */
.featured-product {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    color: var(--mint-green);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.pengme-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 150, 214, 0.2);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.pengme-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(78, 214, 164, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pengme-content {
    position: relative;
    z-index: 2;
}

.pengme-logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.pengme-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pengme-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--mint-green);
    color: var(--primary-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.pengme-visual {
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 100%;
    max-width: 300px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 150, 214, 0.3), rgba(78, 214, 164, 0.3));
    border-radius: 40px;
    border: 8px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 80px rgba(78, 214, 164, 0.3);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
    padding: 12px;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: rgba(10, 29, 67, 0.8);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 150, 214, 0.2);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vibrant-cyan), var(--mint-green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--mint-green);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 150, 214, 0.2), rgba(78, 214, 164, 0.2));
    border: 2px solid rgba(0, 150, 214, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-icon lottie-player {
    width: 60px;
    height: 60px;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(0, 150, 214, 0.3), rgba(78, 214, 164, 0.3));
    border-color: var(--mint-green);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-card {
    aspect-ratio: 16 / 9;
    background: #0D1F3C;
    border: 1px solid rgba(0, 150, 214, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 29, 67, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.portfolio-card:hover::before {
    opacity: 0.7;
}

.portfolio-card:hover {
    border-color: var(--mint-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(78, 214, 164, 0.2);
}

.portfolio-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-card-image {
    transform: scale(1.05);
}

.portfolio-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.portfolio-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--mint-green);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-subtitle {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 29, 67, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border-radius: 20px;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.coming-soon-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Partners Section */
.partners {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.partners-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
    position: relative;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    padding: 4rem 0;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partners-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 214, 0.5), transparent);
    margin: 2rem 0;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 150, 214, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 214, 164, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0, 150, 214, 0.2);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(78, 214, 164, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(78, 214, 164, 0.5);
}

.back-to-top::before {
    content: '↑';
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--vibrant-cyan), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--mint-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--mint-green);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 150, 214, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .pengme-showcase { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    
    /* Menu mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--primary-blue);
        font-size: 1.25rem;
    }
    
    .footer-container { grid-template-columns: 1fr; }
    .pengme-showcase { padding: 2rem; }
    .partners-container { gap: 2rem; }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}