/* Global Styles */
:root {
    --primary-color: #0A1428;
    --secondary-color: #091428;
    --accent-color: #C8AA6E;
    --dark-blue: #000913;
    --text-color: #ffffff;
    --text-secondary: #8fa3b0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--dark-blue));
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(10, 20, 40, 0.9);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 1rem 2rem;
    background-color: rgba(9, 20, 40, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    font-weight: 600;
    transition: var(--transition);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(10, 20, 40, 0.4) 0%, rgba(9, 20, 40, 0.8) 70%);
    z-index: -1;
}

.hero-content {
    width: 50%;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-color);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.hero-image {
    width: 30%;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.google-play img {
    height: 60px;
    transition: var(--transition);
}

.google-play img:hover {
    transform: translateY(-3px);
}

.ios-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.ios-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    background-color: rgba(0, 9, 19, 0.6);
    border-radius: 10px;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8), rgba(9, 20, 40, 0.3));
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 170, 110, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* App Showcase Section */
.app-showcase {
    position: relative;
    overflow: hidden;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 20, 40, 0.8) 0%, rgba(9, 20, 40, 0.4) 100%);
    z-index: -1;
    transform: skewY(-5deg);
    transform-origin: top left;
}

.screen-showcase {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.screen {
    flex: 1;
    min-width: 280px;
    text-align: center;
    transition: var(--transition);
}

.screen img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border: 4px solid rgba(200, 170, 110, 0.2);
}

.screen:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 170, 110, 0.4);
}

.screen h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

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

/* Pricing Section */
.pricing {
    background-color: rgba(0, 9, 19, 0.5);
    border-radius: 10px;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.6), rgba(9, 20, 40, 0.2));
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 170, 110, 0.3);
}

.premium {
    border: 1px solid var(--accent-color);
    z-index: 10;
    transform: scale(1.05);
}

.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 8px 15px;
    font-size: 0.8rem;
    border-radius: 0 10px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-card ul {
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials {
    position: relative;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.7), rgba(9, 20, 40, 0.3));
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 170, 110, 0.3);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.user {
    font-weight: 600;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    background-color: rgba(0, 9, 19, 0.5);
    border-radius: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.6), rgba(9, 20, 40, 0.2));
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    border-color: rgba(200, 170, 110, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Download CTA Section */
.download-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8), rgba(9, 20, 40, 0.4));
    border-radius: 10px;
    padding: 5rem 2rem;
    margin-bottom: 6rem;
}

.download-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.download-cta .cta-buttons {
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 4rem 2rem 1rem;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.footer-logo h2:after {
    display: none;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-column {
    min-width: 150px;
}

.link-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.link-column ul li {
    margin-bottom: 0.8rem;
}

.link-column a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.link-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.social-icons i {
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Media Queries */
@media (max-width: 1200px) {
    section {
        padding: 5rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-image {
        width: 70%;
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .screen-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .screen {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .download-cta h2 {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .premium {
        transform: scale(1);
    }
    
    .premium:hover {
        transform: translateY(-10px);
    }
}

/* Animation */
/* Removed @keyframes fadeInUp and .fadeInUp class */
