:root {
    --primary: #cba052; /* Gold from logo */
    --primary-dark: #a37c35;
    --primary-light: #e5c382;
    --accent: #111111; /* Deep Black */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #faf9f6; /* Soft white */
    --white: #ffffff;
    --black: #000000;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(17, 17, 17, 0.85);
    --glass-border: rgba(203, 160, 82, 0.3);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 10px 30px rgba(203, 160, 82, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn, .logo-text {
    font-family: 'Outfit', sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.text-gold { color: var(--primary); }
.text-black { color: var(--accent); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-dark { background-color: var(--accent); color: var(--white); }

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.logo img {
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.btn-cta-small {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-cta-small::after { display: none; }
.btn-cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 160, 82, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--accent);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 160, 82, 0.15) 0%, rgba(203, 160, 82, 0) 70%);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: slideInDown 1s ease;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(203, 160, 82, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: fadeIn 1.5s ease;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 5s ease-in-out infinite reverse;
}
.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}
.floating-card-text p {
    margin: 0;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.floating-card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(203, 160, 82, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(203, 160, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(203, 160, 82, 0); }
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.benefit-card {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(203, 160, 82, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}
.benefit-card:hover::before { opacity: 1; }

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.benefit-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: var(--accent);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent);
}

/* Marketing Hook Block */
.marketing-block {
    margin: 4rem auto 0;
    background: linear-gradient(135deg, var(--accent) 0%, #222 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.marketing-block::before {
    content: '\f080'; /* Chart icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 15rem;
    color: rgba(203, 160, 82, 0.05);
    z-index: 0;
}

.marketing-content {
    flex: 1;
    z-index: 1;
}
.marketing-content h3 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.marketing-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.marketing-image {
    flex: 0.8;
    z-index: 1;
}
.marketing-image img {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
}
.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    pointer-events: none;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.check-list {
    margin: 2rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.check-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Options Section */
.options {
    padding: 6rem 0;
    background: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.option-card {
    padding: 3.5rem 3rem;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
}

.option-card.associated {
    background: var(--bg-light);
    border: 1px solid #eaeaea;
}
.option-card.associated:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.option-card.distributor {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--primary-dark);
}
.option-card.distributor:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(203, 160, 82, 0.3);
}

.option-header {
    margin-bottom: 2.5rem;
}

.option-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.distributor .option-header h3 {
    color: var(--primary);
}

.option-card ul {
    margin-bottom: 3rem;
}

.option-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-card li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-black {
    background: var(--accent);
    color: var(--primary);
    border: 1px solid var(--accent);
}
.btn-black:hover {
    background: var(--primary);
    color: var(--accent);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: var(--accent);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.footer-logo p {
    color: #ccc;
}

.footer-contact h4, .footer-social h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
}
.footer-contact a {
    color: #ccc;
}
.footer-contact a:hover {
    color: var(--primary);
}
.footer-contact i {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive - Mobile First Enhancements */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.2rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { order: 2; }
    .hero-image { order: 1; max-width: 500px; margin: 0 auto; }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .floating-card { bottom: 10%; left: 0; right: 0; margin: 0 auto; width: max-content; }
    
    .marketing-block { flex-direction: column; text-align: center; padding: 3rem 2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-links a { color: var(--white); font-size: 1.2rem; }
    .mobile-menu-btn { display: block; }
    
    .hero { padding-top: 120px; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
    .btn { width: 100%; }
    .floating-card { display: none; /* Hide on small mobile to reduce clutter */ }
    
    .about-flex { flex-direction: column; }
    .options-grid { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-contact p { justify-content: center; }
    .social-icons { justify-content: center; }
    
    /* Enhance tap targets for mobile */
    .benefit-card, .option-card { padding: 2rem 1.5rem; }
    .section-header h2 { font-size: 2.2rem; }
}
