:root {
    --primary-color: #0B1E3B;
    /* Deep Blue */
    --secondary-color: #1A3A6A;
    /* Lighter Blue */
    --accent-color: #D4AF37;
    /* Gold */
    --text-color: #F0F0F0;
    --text-muted: #B0B0B0;
    --background-dark: #050E1C;
    --card-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(11, 30, 59, 0.85);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, var(--secondary-color), var(--background-dark) 60%);
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-btn small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.store-btn strong {
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

.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;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

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

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--background-dark), var(--secondary-color));
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefits-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 300px;
    border-radius: 30px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.benefits-content {
    flex: 1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 5px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Benefits Responsive handled in main media query */

/* Showcase Section */
.showcase {
    padding: 100px 0;
    text-align: center;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.screenshot-item {
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid #333;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.05);
}

/* Download CTA */
.download-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--background-dark), var(--primary-color));
}

.download-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.store-btn.white {
    background: white;
    color: var(--background-dark);
    border-color: white;
}

.store-btn.white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: #02060C;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.footer-logo img {
    height: 30px;
    width: auto;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--accent-color);
    color: var(--background-dark);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .app-buttons {
        justify-content: center;
    }

    .phone-mockup {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 1/2;
    }

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

    .benefits-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .benefits-content .section-title {
        text-align: center !important;
    }

    .benefits-list li {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .screenshot-item {
        width: 100%;
        max-width: 250px;
    }
}

/* Content Pages */
.page-header {
    background: radial-gradient(circle at bottom, var(--secondary-color), var(--background-dark));
    padding: 160px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.page-content {
    padding: 80px 0;
    min-height: 50vh;
}

.text-page {
    max-width: 800px;
    margin: 0 auto;
}

.text-page h2 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.text-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.text-page p,
.text-page ul {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.text-page ul {
    padding-left: 20px;
    list-style: disc;
}

.contact-card {
    background: var(--card-bg);
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-card p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.contact-email {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-email:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}