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

:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #141414;
    --text-light: #e0e0e0;
    --text-lighter: #f5f5f5;
    --text-muted: #999999;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background texture effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    position: relative;
    z-index: 10;
    padding: 30px 40px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

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

.menu-toggle span {
    width: 24px;
    height: 1px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
}

.nav-menu ul {
    list-style: none;
    margin-top: 20px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding: 0 40px 40px;
    min-height: calc(100vh - 200px);
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.headline {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-lighter);
    letter-spacing: -1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    font-weight: 300;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: var(--bg-darker);
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-btn svg {
    transition: transform 0.3s ease;
}

.contact-btn:hover svg {
    transform: translate(2px, -2px);
}

.apps-section {
    margin-top: 60px;
}

.apps-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-box {
    padding: 20px 24px;
    background-color: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* Right side visual */
.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-visual {
    width: 300px;
    height: 300px;
    color: var(--text-light);
    opacity: 0.6;
}

.logo-visual svg {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px;
    margin-top: 80px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.careers-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.careers-link:hover {
    color: var(--text-lighter);
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* Privacy Policy Page Styles */
.privacy-content {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.privacy-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-lighter);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-content a {
    color: var(--text-lighter);
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-right {
        order: -1;
        justify-content: flex-start;
    }
    
    .logo-visual {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }
    
    main {
        padding: 0 24px 24px;
    }
    
    .headline {
        font-size: 42px;
    }
    
    .description {
        font-size: 16px;
    }
    
    footer {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 32px;
    }
    
    .logo-visual {
        width: 150px;
        height: 150px;
    }
    
    .apps-grid {
        gap: 8px;
    }
    
    .app-box {
        padding: 16px 20px;
        font-size: 14px;
    }
}
