/* Global Styles */
:root {
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --accent-color: #FACC15;
    --accent-hover: #EAB308;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
}

.text-yellow {
    color: var(--accent-color);
}

.accent {
    color: var(--accent-color);
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    /* Slightly smaller to fit nicely with text */
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0;
    /* Removing margin since we use flex gap now */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

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

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

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-disabled {
    background-color: #333;
    color: #888;
    cursor: not-allowed;
    border: 1px solid #444;
}

.btn-disabled:hover {
    transform: none;
    background-color: #333;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar nav a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
}

.navbar nav a:not(.btn):hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

/* Hero Image / Phone Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 700px;
    background: #000;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: 10px;
    box-shadow:
        0 0 0 2px #333,
        /* Outer thin border */
        0 20px 50px rgba(0, 0, 0, 0.5);
    /* Shadow for depth */
    overflow: hidden;
}

/* Notch (Çentik) */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

/* Speaker Grill inside Notch */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #222;
    border-radius: 2px;
    z-index: 11;
}



.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Volume Buttons (Using psuedo element on inner wrapper if needed, or just skip for simplicity) */

.app-grid {
    /* Hide the old app grid placeholder since we are using images now */
    display: none;
}


.app-header {
    margin-bottom: 20px;
}

.app-logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.app-card {
    height: 180px;
    background-color: #2A2A2A;
    border-radius: 12px;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Features Section */
.features {
    padding: 100px 8%;
    background-color: #18181A;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}



/* App Showcase */
.showcase {
    padding: 100px 8%;
    background-color: var(--bg-color);
    text-align: center;
}

.showcase-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.showcase-item h3 {
    color: var(--text-secondary);
    font-weight: 500;
}

.phone-mockup.small {
    width: 260px;
    height: 600px;
    border-radius: 35px;
    /* Adjust fake bezel scalings for smaller size */
    box-shadow:
        0 0 0 2px #333,
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.phone-mockup.small::before {
    width: 100px;
    height: 22px;
}



.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    /* Match inner radius */
}

/* Call to Action */
.cta {
    padding: 100px 8%;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, #2A2A2A 0%, #1E1E1E 100%);
    padding: 60px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    padding: 60px 8% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

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

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

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

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Privacy Page Specifics */
.privacy-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.privacy-section p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    gap: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    z-index: 1001;
}

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

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-menu .btn {
    text-align: center;
    justify-content: center;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.close-menu:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding: 100px 20px 40px;
        text-align: center;
        gap: 40px;
    }

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

    .hero h1 {
        font-size: 2.2rem;
        /* reduced from 2.5rem/3.5rem */
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats {
        justify-content: space-around;
        padding-top: 20px;
    }

    .stats .stat-item {
        align-items: center;
    }

    /* Adjust features grid for mobile padding */
    .features {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta-content {
        padding: 40px 20px;
    }
}