:root {
    --primary-color: #0A192F;
    --secondary-color: #112240;
    --accent-color: #64FFDA;
    --text-color: #8892B0;
    --text-color-light: #CCD6F6;
    --white: #E6F1FF;
    --background: #0A192F;
    --section-bg: #112240;
    --bg-color: #0A192F;
    --bg-gradient: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.site-header.scrolled {
    background: rgba(10, 25, 47, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-x {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-right: 2px;
}

.logo-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-left: 4px;
    position: relative;
    top: -12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color-light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-cta .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-width: 1.5px;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-nav {
        position: relative;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 5rem 2rem 2rem;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: -10px 0 30px rgba(2, 12, 27, 0.7);
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(17, 34, 64, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.mobile-menu-close {
    color: var(--accent-color);
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--text-color-light);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem 0;
}

.mobile-nav-item {
    font-size: 1.25rem;
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    text-align: center;
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-item:hover {
    color: var(--accent-color);
}

.mobile-nav-item:hover::after {
    width: 30%;
}

.mobile-nav-item.active {
    color: var(--accent-color);
}

.mobile-nav-item.active::after {
    width: 30%;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(17, 34, 64, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-social-link {
    color: var(--text-color-light);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Overlay when mobile menu is active */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    padding: calc(80px + 2rem) 0 3rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glitch-text {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #64FFDA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--accent-color);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

.hero-description {
    max-width: 600px;
}

.hero-description p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(100, 255, 218, 0.25);
}

.secondary-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

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

.stat-card {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(100, 255, 218, 0.1);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.95) 0%,
        rgba(17, 34, 64, 0.9) 100%
    );
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        max-width: 800px;
    }

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

    .hero-description {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: calc(70px + 1.5rem) 0 2.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: calc(60px + 1rem) 0 2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-section {
        padding: calc(70px + 2rem) 0 3rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        max-width: 800px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: calc(60px + 1.5rem) 0 2.5rem;
    }

    .hero-content {
        gap: 2.5rem;
        padding: 1.5rem;
    }

    .hero-text {
        gap: 1.25rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: calc(60px + 1rem) 0 2rem;
    }

    .hero-content {
        padding: 1rem;
        gap: 2rem;
    }

    .glitch-text {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }

    .hero-description p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }

    .stat-label {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }

    .primary-btn,
    .secondary-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--section-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.5;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Section */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    background: var(--primary-color);
}

.product-item {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(10, 25, 47, 0.95));
    transform: translateY(100px);
    transition: transform 0.5s ease;
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-gradient);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card .btn {
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.contact-card .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-card .btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 255, 218, 0.2);
}

.contact-card .btn:hover i {
    transform: translateX(3px);
}

.contact-card .btn[href^="tel:"]::after {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.contact-card .btn[href^="mailto:"]::after {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.contact-card .btn[href^="https://maps"]::after {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .card-icon i {
        font-size: 1.25rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-card .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.brand-description {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-links h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-newsletter h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-newsletter p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 4px;
    background: rgba(100, 255, 218, 0.05);
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-button {
    padding: 0.8rem 1.2rem;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: var(--text-color-light);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .large-text {
        font-size: 1.2rem;
    }
}

/* Hero Animations */
@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-hidden {
    opacity: 0;
    visibility: hidden;
}

.fade-up {
    animation: fadeUpIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slide-right {
    animation: slideInRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Add animation delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Cookie Policy Section */
.cookie-policy-section {
    padding: calc(80px + 4rem) 0 4rem;
    background: var(--primary-color);
    min-height: 100vh;
}

.cookie-policy-section h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.cookie-content {
    background: rgba(17, 34, 64, 0.5);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--text-color-light);
}

.cookie-content h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.cookie-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.cookie-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-content strong {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .cookie-policy-section {
        padding: calc(70px + 2rem) 1rem 2rem;
    }

    .cookie-content {
        padding: 1.5rem;
    }

    .cookie-policy-section h1 {
        font-size: 2rem;
    }

    .cookie-content h2 {
        font-size: 1.3rem;
    }

    .cookie-content h3 {
        font-size: 1.1rem;
    }
}

/* Privacy Policy Section */
.privacy-policy-section {
    padding: calc(80px + 4rem) 0 4rem;
    background: var(--primary-color);
    min-height: 100vh;
}

.privacy-policy-section h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content {
    background: rgba(17, 34, 64, 0.5);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--text-color-light);
}

.policy-content h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: calc(70px + 2rem) 1rem 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .privacy-policy-section h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }
}

/* Terms Section */
.terms-section {
    padding: calc(80px + 4rem) 0 4rem;
    background: var(--primary-color);
    min-height: 100vh;
}

.terms-section h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.terms-content {
    background: rgba(17, 34, 64, 0.5);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--text-color-light);
}

.terms-content h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .terms-section {
        padding: calc(70px + 2rem) 1rem 2rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-section h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }
}

/* Careers Page Styles */
.careers-page {
    min-height: calc(100vh - 200px);
}

.careers-hero {
    background: var(--bg-gradient);
    padding: 6rem 0 4rem;
    text-align: center;
}

.careers-hero h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.careers-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.careers-content {
    padding: 4rem 0;
    background: var(--bg-color);
}

.no-positions {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container i {
    font-size: 2rem;
    color: var(--accent-color);
}

.no-positions h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.no-positions p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.future-opportunities,
.why-join {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.future-opportunities h3,
.why-join h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 4rem 0 2rem;
    }

    .careers-hero h1 {
        font-size: 2rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }

    .no-positions {
        padding: 1.5rem;
    }

    .future-opportunities,
    .why-join {
        padding: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-container i {
        font-size: 1.5rem;
    }
}
