/* Global Styles */
:root {
    --primary-color: #0056b3;
    /* Corporate Blue */
    --secondary-color: #0d1117;
    /* Dark Navy/Black */
    --accent-color: #ffffff;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Classes */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subheading {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
}

.feature-title,
.testimonials-heading,
.footer-heading,
.modal-heading {
    font-weight: 700;
    color: var(--secondary-color);
}

.feature-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    font-style: normal;
}

/* Link Classes */
.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.footer-link {
    text-decoration: none;
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeOut 1s ease-in-out 2s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid #eaeaea;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.cta-btn:hover {
    background: #004494;
    transform: translateY(-2px);
}

.security-cta {
    background: #444;
}

/* Hamburger & Mobile Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(3px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1003;
    transition: right 0.3s ease-in-out;
    padding: 2rem 2rem 6rem 2rem;
    box-sizing: border-box;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-cta-container {
    margin-top: auto;
    padding-top: 2rem;
}

.mobile-cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Hero Section */
.section-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    color: var(--accent-color);
    padding: 10rem 5% 8rem;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Features */
.section-features {
    padding: 6rem 5%;
    background: white;
}

.bg-white {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.feature-text {
    color: var(--text-color);
    line-height: 1.6;
}

/* About Us */
.section-about {
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    gap: 5rem;
    background: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-left {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content {
    flex: 1;
}

.about-image-container {
    flex: 1;
    max-width: 100%;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-item {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Testimonials */
.section-testimonials {
    padding: 6rem 5%;
    background: white;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f1f3f5;
    padding: 2.5rem;
    border-radius: 8px;
    font-style: italic;
    color: #495057;
}

/* FAQ */
.section-faq {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: #6c757d;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: #1a1e21;
    color: #ced4da;
    padding: 5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-heading {
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-item {
    margin-bottom: 0.8rem;
}

.highlight-text {
    font-weight: bold;
    color: #ddd;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.copyright-section {
    text-align: center;
    border-top: 1px solid #343a40;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 3px solid var(--primary-color);
    box-sizing: border-box;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.reject-btn {
    background: #e9ecef;
    color: #333;
}

.accept-btn {
    background: var(--primary-color);
    color: white;
}

.accept-btn:hover {
    background: #004494;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    color: #000;
}

.modal-text {
    color: #000;
}

.modal-content .highlight-text {
    color: #000;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.legal-text-container {
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
}

.legal-subheading {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .section-hero {
        padding: 6rem 5% 4rem;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-about,
    .section-downloads {
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 5%;
    }

    .about-image-container {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .features-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .testimonial-card,
    .feature-card {
        padding: 1.5rem;
    }

    .modal-content {
        width: 85%;
        padding: 1.5rem;
        max-height: 70vh;
    }
}