* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary: #C5A059;
    --dark: #111111;
    --dark-grey: #1a1a1a;
    --light: #f9f9f9;
    --white: #ffffff;
    --accent: #FFD700;
    --text-primary: #333;
    --text-secondary: #666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.5);
}

.btn-large {
    font-size: 1.2rem;
    padding: 22px 50px;
    width: 100%;
    max-width: 500px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('beverage_retail_hero_1774306552430.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    max-width: 100%;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Pain Section */
.pain {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

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

.pain-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-10px);
}

.pain-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.pain-card h3 {
    margin-bottom: 15px;
}

/* Solution / Method */
.method {
    background: var(--dark-grey);
    color: var(--white);
    max-width: 100%;
}

.method-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.method-text {
    flex: 1;
    min-width: 300px;
}

.method-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.method-image {
    flex: 1;
    min-width: 300px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.method-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Modules */
.modules {
    background: var(--white);
}

.module-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.module-item {
    display: flex;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.module-number {
    background: var(--primary);
    color: var(--dark);
    font-weight: 900;
    font-size: 1.5rem;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.module-content {
    padding: 25px;
}

.module-content h3 {
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-grey) 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
}

.price-card {
    background: var(--white);
    color: var(--dark);
    max-width: 600px;
    margin: 50px auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.price-header {
    background: var(--primary);
    padding: 40px;
}

.price-header h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-body {
    padding: 50px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    margin: 10px 0;
}

.price-meta {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Bonuses */
.bonuses {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bonus-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.bonus-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
    
    .hero {
        height: auto;
        padding: 150px 20px 100px;
    }
    
    .method-container {
        flex-direction: column-reverse;
    }
}
