:root {
    --bg-color: #0b0f19;
    --bg-secondary: #1a2035;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --glass-bg: rgba(26, 32, 53, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Animated Blobs */
.blob {
    position: absolute;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    border-radius: 50%;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.4);
}

.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.4);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 30px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-description {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 15px;
}

.hero-description:last-of-type {
    margin-bottom: 25px;
}

.contact-info {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.info-label {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link svg {
    color: var(--primary);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

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

/* Horizontal Carousel Section */
.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 20px 40px;
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.carousel-card {
    flex: 0 0 250px;
    height: 540px;
    scroll-snap-align: start;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255,255,255,0.05) inset;
    border: 4px solid #1e293b;
    background: #0f172a;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255,255,255,0.08) inset;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 30px 30px;
    margin-top: 50px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.8));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 300px;
}

.footer-links h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 120px 30px 80px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--primary);
}

.legal-header {
    margin-bottom: 40px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 16px 0 12px;
}

.legal-effective {
    color: var(--text-muted);
    font-size: 14px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin: 24px 0 12px;
}

.legal-section p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 14px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.legal-section ul li {
    color: var(--text-muted);
    font-size: 15px;
    padding: 6px 0 6px 20px;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer Company Info */
.footer-company-info h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-company-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 4px;
}

/* Animations */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.hero-content .badge { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.2s; }
.hero-content .glass-panel { animation-delay: 0.3s; }
.hero-content .action-buttons { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .glass-panel {
        text-align: left;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .nav-links {
        display: none; /* Hide for mobile focus, or can be toggled via JS */
    }

    .menu-toggle {
        display: flex;
    }

    .hero-visuals {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .carousel-container {
        width: 260px;
        height: 540px;
    }
}
