@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #002b5c;
    --primary-light: #0a4b9a;
    --secondary-color: #00d2ff;
    --accent-color: #e30613;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --border-color: rgba(226, 232, 240, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -3px rgba(0, 43, 92, 0.08), 0 4px 6px -2px rgba(0, 43, 92, 0.04);
    --shadow-lg: 0 20px 40px -5px rgba(0, 43, 92, 0.12), 0 10px 15px -5px rgba(0, 43, 92, 0.04);
    --shadow-glow: 0 0 20px rgba(0, 210, 255, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul { list-style: none; }

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

.relative { position: relative; }
.bg-white { background-color: white !important; color: var(--text-dark) !important; }
.bg-light { background-color: var(--bg-white); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography classes */
.section-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-padding { padding: 100px 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 43, 92, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 43, 92, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.btn-accent:hover {
    background-color: #c00510;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}


.icon-sm { width: 18px; height: 18px; }

/* Floating Header */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.main-header.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.main-header .header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 30px;
}

.logo-img { height: 40px; }

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

.nav-menu > ul > li > a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 10px 0;
}

.nav-menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-menu > ul > li > a:hover::after,
.nav-menu > ul > li > a.active::after {
    width: 100%;
}

.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-switcher {
    display: flex;
    gap: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.lang-switcher a:hover { color: var(--primary-color); }
.lang-switcher a.active { color: var(--primary-color); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(0, 43, 92, 0.05), transparent 40%);
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-floating-card {
    position: relative;
    width: 340px;
    flex-shrink: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.floating-card-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item:last-child { margin-bottom: 0; }

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0,43,92,0.1), rgba(0,210,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.stat-title { font-size: 1.1rem; }
.stat-desc { font-size: 0.85rem; color: var(--text-muted); }

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bento-large { grid-column: span 2; }
.bento-img-bg {
    padding: 0;
    background-size: cover;
    background-position: center;
}

.bento-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bento-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bento-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.bento-text-muted {
    color: var(--text-muted);
}

.bento-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.bento-icon-light {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bento-title-light {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.bento-text-light {
    color: rgba(255,255,255,0.8);
}

.bento-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bento-icon-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon-accent {
    width: 40px;
    height: 40px;
    background: var(--bg-main);
    color: var(--accent-color);
}

/* Corporate Split Section */
.corporate-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corporate-content {
    max-width: 550px;
}

.corporate-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.corporate-visual {
    position: relative;
    border-radius: var(--radius-lg);
    padding-bottom: 30px;
    padding-right: 30px;
}

.corporate-visual::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80%; height: 80%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    z-index: 0;
}

.corporate-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.corporate-glass-card {
    position: absolute;
    bottom: 50px;
    left: -30px;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.corporate-icon {
    width: 50px; height: 50px;
    color: white;
    background: var(--primary-color);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .corporate-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .corporate-glass-card {
        left: 20px;
        bottom: 20px;
    }
}

/* Tech/Dashboard Presentation Card */
.bento-dashboard {
    background: linear-gradient(135deg, #0f172a, #002b5c);
    color: white;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.bento-dashboard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.dash-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.dash-tag {
    background: rgba(0, 210, 255, 0.15);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.dash-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.dash-content {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.dash-accent-line {
    width: 4px;
    background: var(--accent-color);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
}

.dash-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.dash-text strong {
    color: white;
    font-weight: 600;
}

/* Products Swiper */
.products-container {
    padding: 20px 0 50px;
    width: 100%;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    transform: scale(0.7);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.product-card.has-image {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-img-wrapper {
    background: transparent;
    height: 250px;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}

.product-card.has-image .product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 210, 255, 0.03));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: var(--radius-lg);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 210, 255, 0.3);
}

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

.product-variants {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.variant {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
    color: var(--text-color);
}

.variant:hover {
    border-color: var(--primary-color);
}

.variant.active {
    background: #001a35;
    color: white;
    border-color: #001a35;
    font-weight: 600;
}

.product-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon-wrap {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-icon {
    width: 35px;
    height: 35px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    min-height: 60px; /* Assure la même hauteur pour toutes les descriptions */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Certifications */
.cert-section {
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 80px;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.cert-section::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cert-section::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,210,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cert-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cert-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 50px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.cert-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    flex-shrink: 0;
}

.cert-item-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cert-item-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    padding-right: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail-item i {
    color: var(--primary-color);
    background: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-detail-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-detail-item p {
    color: var(--text-muted);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 43, 92, 0.1);
}

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

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Premium Dark Footer */
.footer {
    background: var(--primary-color);
    position: relative;
    padding: 80px 0 30px;
    overflow: hidden;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,210,255,0.5), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Makes the dark logo white */
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 300px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-circle:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-pill i {
    color: var(--secondary-color);
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    line-height: 1.5;
}

.pin-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
    color: var(--secondary-color);
}

.footer-menu a:hover {
    color: white;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; }
    .hero { min-height: 70vh; padding-top: 120px; }
    .hero-title { font-size: 3.5rem; }
    .hero-floating-card { display: none; }
    .hero-overlay { background: rgba(255,255,255,0.85); }
    
    .mobile-menu-btn { display: block; margin-left: 15px; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
        flex-direction: column;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .nav-menu ul li {
        width: 100%;
    }
    .nav-menu ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hero { min-height: 50vh; padding-top: 100px; padding-bottom: 40px; }
    .hero-title { font-size: 2.8rem; }
}