:root {
    --bg-dark: #0a0f1c;
    --bg-card: rgba(15, 23, 42, 0.5);
    --border-slate: rgba(30, 41, 59, 0.5);
    --text-main: #ffffff;
    --text-slate: #94a3b8;
    --text-slate-light: #cbd5e1;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --cyan-400: #22d3ee;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --cyan-500: #06b6d4;
    --indigo-500: #6366f1;
    --rose-500: #f43f5e;
    --teal-500: #14b8a6;
    --violet-500: #8b5cf6;
    --green-500: #22c55e;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --orange-400: #fb923c;
    --orange-500: #f97316;
}

.text-blue-400 {
    color: var(--blue-400);
}

.text-pink-400 {
    color: var(--pink-400);
}

.text-cyan-400 {
    color: var(--cyan-400);
}

.text-purple-400 {
    color: var(--purple-400);
}

.text-emerald-400 {
    color: var(--emerald-400);
}

.text-amber-400 {
    color: var(--amber-400);
}

.text-sm {
    font-size: 0.875rem;
}

.mt-16 {
    margin-top: 4rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
    width: 100%;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 1024px) {
    .lg\:gap-12 {
        gap: 3rem;
    }
}

.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.hidden {
    display: none;
}

.md\:hidden {
    display: inline-flex;
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Layout */
.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    height: 5rem;
    display: flex;
    align-items: center;
}

header.scrolled {
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-slate);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500), var(--purple-500));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.5s ease;
}

.logo:hover .logo-box {
    transform: rotate(360deg);
}

.logo-inner {
    position: absolute;
    inset: 2px;
    background: var(--bg-dark);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    background: linear-gradient(to bottom right, var(--blue-400), var(--cyan-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.125rem;
}

.brand-name {
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-slate);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
    transition: width 0.3s ease;
}

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

.nav-ctas {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-ctas {
        display: flex;
    }
}

.whatsapp-link {
    color: var(--text-slate);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--emerald-400);
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.w-full {
    width: 100% !important;
    display: flex !important;
}

.btn-primary {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
}

/* Form Styles */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.8);
    border-radius: 1rem;
    padding: 0.875rem 1.125rem;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
    background: #111827;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #3b82f6;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
    opacity: 0.6;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-textarea {
    resize: none;
}

/* Background Animations */
.bg-animated {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: pulse-orb-1 15s infinite ease-in-out;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: pulse-orb-2 18s infinite ease-in-out;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: rotate-orb-3 25s infinite linear;
}

@keyframes pulse-orb-1 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(50px, 30px);
    }
}

@keyframes pulse-orb-2 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.3) translate(-30px, -40px);
    }
}

@keyframes rotate-orb-3 {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
}

/* Sections */
section {
    padding: 6rem 1rem;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 2rem;
    color: var(--blue-400);
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--blue-400), var(--cyan-400), var(--purple-400));
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    display: inline-block;
    padding-bottom: 0.1em;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-slate);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-align: center;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-btns {
        flex-direction: row;
    }
}

.btn-outline {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid #334155;
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-1px);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    opacity: 0.2;
    pointer-events: none;
    animation: float 4s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-slate);
    border-radius: 2rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-5px);
}

.card:hover::before {
    opacity: 0.05;
}

.card>* {
    position: relative;
    z-index: 1;
}

/* Contact Info Card */
.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-8px);
}

.contact-info-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.2);
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--border-slate);
    border-radius: 0.75rem;
    background: var(--bg-card);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.open {
    max-height: 500px;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2 !important;
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3 !important;
    }

    .lg\:col-span-4 {
        grid-column: span 4 / span 4 !important;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    padding: 2px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #1e293b;
    color: var(--text-slate);
    border: 1px solid #334155;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue-400);
    cursor: pointer;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.learn-more:hover {
    gap: 0.5rem;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

.section-tag {
    color: var(--blue-400);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    position: relative;
    z-index: 1;
}

.stat-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.glow-effect {
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), transparent, rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
    z-index: -1;
}

.stat-card:hover .glow-effect {
    opacity: 1;
}

/* Why Choose Us & How It Works Styles */
.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-hover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--blue-500), var(--purple-500));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.benefit-card:hover .benefit-hover-gradient {
    opacity: 0.05;
}

/* How It Works Specifics */
.steps-container {
    position: relative;
    margin-top: 5rem;
}

.connection-line {
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-slate), transparent);
    display: none;
}

@media (min-width: 1024px) {
    .connection-line {
        display: block;
    }
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    z-index: 10;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-slate);
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #1e293b;
    border: 1px solid var(--border-slate);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    animation: slide-right 1.5s infinite;
}

@media (min-width: 1024px) {
    .step-arrow {
        display: flex;
    }
}

@keyframes slide-right {

    0%,
    100% {
        transform: translate(0, -50%);
    }

    50% {
        transform: translate(5px, -50%);
    }
}

/* Footer Styles */
footer {
    padding: 5rem 1rem 2rem;
    border-top: 1px solid var(--border-slate);
    position: relative;
    background: var(--bg-dark);
}

.footer-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--blue-500), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .footer-brand-col {
        grid-column: span 2;
    }
}

.footer-brand-col {
    grid-column: span 2;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-slate);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #334155;
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-slate);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--blue-400);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-slate);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-slate);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 0.875rem;
}

.back-to-top:hover {
    color: var(--blue-400);
}

.top-btn-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Overlay */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

#mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 2rem;
}

#mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    margin-bottom: 4rem;
}