

:root {
    --primary-color: #d4af37;     --primary-hover: #b5952f;
    --dark-bg: #111111;       
    --light-bg: #f8f9fa;      
    --text-main: #333333;
    --text-light: #ffffff;
    --font-heading: 'Georgia', serif; 
    --font-body: 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.center-text { text-align: center; }
.light-bg { background-color: var(--light-bg); }
.dark-bg { background-color: var(--dark-bg); color: var(--text-light); }
img { max-width: 100%; height: auto; display: block; }


a { text-decoration: none; transition: all 0.3s ease; }
.btn-primary, .btn-secondary, .btn-join, .btn-login {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
}
.btn-primary, .btn-join {
    background-color: var(--primary-color);
    color: #000;
}
.btn-primary:hover, .btn-join:hover { background-color: var(--primary-hover); }
.btn-secondary {
    background-color: #000;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-secondary:hover { background-color: var(--primary-color); color: #000; }


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--dark-bg);
    color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { font-size: 24px; font-weight: bold; font-family: var(--font-heading); letter-spacing: 1px;}
.nav-links a { color: #fff; margin: 0 15px; font-size: 14px; }
.nav-links a:hover { color: var(--primary-color); }
.btn-login { color: #fff; margin-right: 15px; }

/* =========================================
   Section 1: Hero
========================================= */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }


section { padding: 80px 0; }
section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}
.features-section {
    padding-top: 90px; 
    padding-bottom: 100px;
}


.concept-grid, .features-grid, .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.card, .feature-item, .review-card {
    text-align: center;
    padding: 20px;
}
.card img { border-radius: 10px; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.feature-item img { width: 80px; margin: 0 auto 20px; }
.card h3, .feature-item h3 { margin-bottom: 15px; font-size: 1.3rem; }
.review-card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--primary-color); }
.review-card h4 { margin-top: 15px; color: var(--primary-color); }


.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.split-layout.reverse { flex-direction: row-reverse; }
.text-content, .image-content { flex: 1; }
.text-content h2 { text-align: left; }
.text-content ul { list-style: none; margin: 20px 0 30px; }
.text-content ul li { margin-bottom: 15px; font-size: 1.1rem; }
.image-content img { border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

/* =========================================
   Section 6: Safety & Trust
========================================= */
.trust-img { margin: 30px auto; max-width: 600px; }

/* =========================================
   Section 7: App Stores
========================================= */
.store-buttons { display: flex; gap: 15px; margin-top: 20px; }
.store-buttons img { width: 160px; cursor: pointer; transition: transform 0.2s; }
.store-buttons img:hover { transform: translateY(-3px); }

/* =========================================
   Section 9: FAQ
========================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #ddd; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-color); }

/* =========================================
   Section 10: Fat Footer
========================================= */
.seo-footer { background-color: #0a0a0a; color: #aaa; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; border-bottom: 1px solid #333; padding-bottom: 10px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #aaa; font-size: 0.95rem; }
.footer-col a:hover { color: var(--primary-color); padding-left: 5px; } 
.social-links { margin-top: 15px; }
.social-links a { margin-right: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 20px; font-size: 0.85rem; }


@media (max-width: 992px) {
    .split-layout, .split-layout.reverse { flex-direction: column; text-align: center; }
    .text-content h2 { text-align: center; }
    .text-content ul { text-align: left; display: inline-block; }
    .store-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    section { padding: 50px 0; }
    section h2 { font-size: 1.8rem; }
    .nav-links { display: none; } 
    .store-buttons { flex-direction: column; align-items: center; }
}



.features-grid {
    display: flex; 
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); 
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}


.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1); 
    border-radius: 50%;
}


.icon-wrapper i {
    font-size: 45px;
    color: var(--primary-color); 
}

.feature-item h3 {
    font-family: var(--font-heading); 
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}


@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    .feature-item {
        width: 100%;
        max-width: 500px;
    }
    .features-section {
        padding-top: 100px; 
    }
}

.feature-item:hover {
    transform: translateY(-10px); 
}


.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1); 
    border-radius: 50%; 
}


.icon-wrapper i {
    font-size: 40px; 
    color: var(--gold); 
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}


@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
    }
}


.trust-badge-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 48px;
    color: #27ae60; 
    background: white;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trust-item span {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--text-main);
    text-transform: uppercase;
}


.store-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.download-btn {
    background-color: #000; 
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    min-width: 180px;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #333;
}

.download-btn:hover {
    background-color: #222;
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 32px;
    margin-right: 12px;
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.download-btn .btn-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn .btn-text strong {
    font-size: 18px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .trust-badge-container { gap: 30px; }
    .store-buttons { flex-direction: column; align-items: center; }
    .download-btn { width: 220px; }
}