:root {
    --primary-dark: #061A12;
    --primary-mid: #0D2B1D;
    --accent: #D4AF37;
    --accent-light: #F1E5AC;
    --text-white: #FDFBF7;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

.cinzel-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

header {
    background: rgba(6, 26, 18, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0.7;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.btn-download-nav {
    background: var(--accent);
    color: var(--primary-dark) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800 !important;
    opacity: 1 !important;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 10% 100px;
    background: radial-gradient(circle at top right, #1B4D3E, var(--primary-dark));
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
    font-weight: 900;
}

.hero-content .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

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

/* FEATURES */
.features {
    padding: 100px 10%;
    background: var(--primary-dark);
    text-align: center;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--accent-light);
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: 0.3s;
}

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

.feature-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.7;
}

/* SHOWCASE */
.showcase {
    padding: 100px 10%;
    background: linear-gradient(to bottom, var(--primary-dark), #0D2B1D);
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 span {
    color: var(--accent);
}

.showcase-text p {
    margin: 25px 0;
    opacity: 0.8;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.check-list li i {
    color: var(--accent);
}

.showcase-visual {
    flex: 1;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
}

.chart-mock {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), var(--accent-light));
    border-radius: 5px 5px 0 0;
}

/* CONTACT */
.contact {
    padding: 100px 10%;
    text-align: center;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.email-box {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
}

.email-box i {
    color: var(--accent);
}

.email-box a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--accent);
    transition: 0.3s;
}

.email-box a:hover {
    color: var(--accent);
}

.privacy-link-container {
    margin-top: 20px;
}

.privacy-link {
    color: var(--text-white);
    opacity: 0.3;
    font-size: 12px;
    text-decoration: none;
}

.privacy-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* FOOTER */
footer {
    padding: 60px 10%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--text-white);
    font-size: 20px;
    opacity: 0.5;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero, .showcase-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image, .hero-content {
        width: 100%;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    nav ul {
        display: none;
    }
}
