@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Inter:wght@400;500;600&family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --bg-color: #0d0d0d;
    --bg-card: rgba(22, 22, 22, 0.7);
    --gold-primary: #D4AF37; /* Metallic Gold */
    --gold-glowing: #FFD700;
    --gold-dark: #8c732b;
    --white: #ffffff;
    --grey-light: #e0e0e0;
    --grey-dim: #888888;
    --grey-dark: #1a1a1a;
    
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-accent: 'Cinzel', serif; /* For Stoic Quotes / Elegance */
    --font-body: 'Inter', system-ui, sans-serif;
    
    --gold-grad: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --bg-grad: radial-gradient(circle at top center, rgba(212, 175, 55, 0.05) 0%, rgba(13, 13, 13, 1) 70%);
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--grey-dark);
    background-image: var(--bg-grad);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Base Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Metallic Text Background Effect */
.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
}

.brand-logo {
    height: 45px;
    width: auto;
    /* This filter roughly converts black to #D4AF37 (Gold) */
    filter: brightness(0) saturate(100%) invert(75%) sepia(35%) saturate(700%) hue-rotate(5deg) brightness(95%) contrast(90%);
    transition: var(--transition);
}

.logo:hover .brand-logo {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(86%) sepia(50%) saturate(600%) hue-rotate(345deg) brightness(101%) contrast(101%);
}

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

.menu-toggle {
    display: none;
}

.nav-links a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-grad);
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--gold-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold-grad);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 0 4rem;
    min-height: 80vh;
    justify-content: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--grey-light);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.supporting-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: var(--grey-dim);
    font-size: 0.85rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-item i {
    color: var(--gold-primary);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.product-card.featured {
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(22, 22, 22, 0.7) 100%);
}

.product-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-grad);
    color: #000;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-accent);
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.product-desc {
    color: var(--grey-dim);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.badge-paid {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-free {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sections Structure */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--grey-dim);
    font-size: 1.05rem;
}

/* Problem Grid (Section 2) */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.problem-card p {
    color: var(--grey-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

.supporting-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--grey-light);
    line-height: 1.8;
}

/* Solution Grid (Section 3) */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.solution-card {
    padding: 2rem;
    border-top: 3px solid var(--gold-primary);
}

.phase-text {
    font-family: var(--font-accent);
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.solution-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--grey-dim);
    font-size: 0.85rem;
}

/* What's Inside & Layout Utilities */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.side-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mockup-placeholder {
    width: 80%;
    height: 80%;
    border-radius: 8px;
    background: linear-gradient(to bottom, #111, #222);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-accent);
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 4px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--grey-dim);
    font-size: 0.9rem;
}

/* Footer & Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin: 2rem 0;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    color: var(--grey-dim);
    font-size: 0.85rem;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Accordion / FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,225,55,0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.faq-trigger {
    padding: 1.2rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-trigger h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-content p {
    padding: 1.5rem 1.8rem;
    color: var(--grey-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-icon i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

/* Responsive adjustments for Navigation & Grid */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    /* Burger Menu Toggle Trigger */
    .menu-toggle {
        display: flex;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--gold-primary);
        z-index: 1001;
        transition: var(--transition);
    }

    /* Navigation overlay layout */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 600;
    }

    /* Buttons groups stacked */
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        gap: 12px;
    }

    .cta-group .btn {
        width: 100%;
    }

    nav .btn {
        display: none; /* Hide standard buy btn to make it clean on mobile headers */
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    section { padding: 4rem 0; }
    .hero { padding: 4rem 0 3rem; }
    .problem-card, .solution-card, .glass { padding: 1.5rem !important; }
    .hero h1 { font-size: 2.3rem; }
    .section-header h2 { font-size: 1.8rem; }
    .gold-text { font-size: inherit; }
}
