/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1A1A2E;
    --gold-color: #D4AF37;
    --dark-red: #D4AF37;
    --light-bg: #16213E;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #CCCCCC;
    --warning-bg: #D4AF37;
    --success: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #D4AF37;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 3px 0px #D4AF37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    position: relative;
}

.navbar {
    padding: 0.75rem 0;
}

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

.logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #D4AF37;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #D4AF37;
    color: #1A1A2E;
}

.btn-primary:hover {
    background: #c49d2a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: #1A1A2E;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero h1, .hero h2 {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #16213E;
    color: var(--white);
}

.warning-box {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid #D4AF37;
}

.warning-box h2 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.problem-content {
    display: flex;
    justify-content: center;
}

.problem-text {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.problem-image img {
    width: 60%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.risk-list {
    list-style: none;
    margin: 20px auto;
    text-align: left;
    display: inline-block;
}

.risk-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
}

.fbi-warning {
    background: #2D2D44;
    color: var(--white);
    padding: 20px;
    border-left: 4px solid #D4AF37;
    margin-top: 20px;
    border-radius: 5px;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
}

.solution-section .section-subtitle,
.products-section .section-subtitle {
    color: #1A1A1A;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.solution-demo {
    margin: 40px 0;
    text-align: center;
}

.full-width-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: #2D2D44;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.feature h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: #16213E;
    color: var(--white);
}

.why-section h2 {
    text-align: center;
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    background: #2D2D44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: var(--white);
}

.benefit h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.products-section h2 {
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.free-shipping {
    color: var(--success);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #D4AF37;
    color: var(--primary-color);
}

.qty-display {
    width: 60px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
    background: #16213E;
    color: var(--white);
}

.audience-section h2 {
    text-align: center;
    color: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.audience {
    background: #2D2D44;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.audience h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* CTA Section */
/* Video Section */
.video-section {
    padding: 80px 0;
    background: #16213E;
    text-align: center;
}

.video-section h2 {
    color: var(--gold-color);
    margin-bottom: 0.5rem;
}

.video-section .section-subtitle {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--gold-color);
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.cta-section {
    padding: 80px 0;
    background: #1A1A2E;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 3px solid #D4AF37;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .hero .container,
    .problem-content,
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 60px;
    }
}