/* Global Styles */
:root {
    --primary: #3D5AFE;
    --primary-light: #5C7CFF;
    --primary-dark: #2238C8;
    --bg-light: #FAFAFE;
    --text-dark: #0F122B;
    --text-muted-dark: #5A6084;
    --bg-dark: #090B1E;
    --text-light: #F4F6FF;
    --text-muted-light: #A5ADCF;
    --card-light: rgba(13, 18, 43, 0.03);
    --card-dark: rgba(255, 255, 255, 0.04);
    --border-light: rgba(13, 18, 43, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

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

/* Navbar */
.header {
    background-color: rgba(9, 11, 30, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

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

.nav-item:hover {
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(92, 124, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(61, 90, 254, 0.08) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(92, 124, 255, 0.15);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(92, 124, 255, 0.25);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted-light);
    margin-bottom: 36px;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(61, 90, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(61, 90, 254, 0.45);
}

.icon-play {
    width: 20px;
    height: 20px;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-frame {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-dark);
}

.feature-graphic-img {
    width: 100%;
    display: block;
}

/* Security banner / lock icon */
.security-banner {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.icon-lock-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(92, 124, 255, 0.1);
    color: var(--primary-light);
    margin-bottom: 24px;
}

.max-w-600 {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted-light);
    font-size: 16px;
}

.security-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.card {
    background-color: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(92, 124, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.06);
}

.card-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.card-pdf .card-icon {
    background-color: rgba(229, 57, 53, 0.15);
    color: #FF5252;
}

.card-db .card-icon {
    background-color: rgba(29, 233, 182, 0.15);
    color: #1DE9B6;
}

.card-office .card-icon {
    background-color: rgba(67, 160, 71, 0.15);
    color: #4CAF50;
}

.card-code .card-icon {
    background-color: rgba(253, 216, 53, 0.15);
    color: #FFC107;
}

.card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.card p {
    color: var(--text-muted-light);
    font-size: 15px;
}

/* Legal Pages styling */
.legal-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.meta-info {
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p, .legal-content li {
    font-size: 16px;
    color: var(--text-muted-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-content strong {
    color: #FFFFFF;
}

.legal-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #FFFFFF;
}

.contact-box {
    background-color: rgba(92, 124, 255, 0.08);
    padding: 16px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-light);
}

/* Footer */
.footer {
    background-color: #050714;
    border-top: 1px solid var(--border-dark);
    padding: 60px 0 30px 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand p {
    color: var(--text-muted-light);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

.copyright-bottom {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }
    
    .hero {
        padding-top: 180px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
}
