:root {
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --black: #1A1A1A;
    --dark-gray: #333333;
    --light-gray: #F4F4F4;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

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

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

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gold {
    color: var(--gold);
}

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

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

.btn-nav {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    border: 2px solid var(--black);
}

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

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 5px solid var(--gold);
    border-radius: 50%;
    z-index: -1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

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

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-gold {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.problem-card h3 {
    margin-bottom: 1rem;
}

/* Solution Section */
.dark-bg {
    background: var(--black);
    color: var(--white);
}

.solution-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.solution-text {
    flex: 1;
}

.gold-sub {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.white-p {
    color: #ccc;
    margin-bottom: 2rem;
}

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

.solution-stat-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

/* Community Section */
.bg-light { background: #fdfdfd; }
.community-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.community-content { 
    flex: 1.2; 
    min-width: 300px;
}
.qr-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid var(--gold);
}
.qr-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 0.5rem;
}
.qr-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}
.community-benefits {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 300px;
}
.c-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold-dark);
    font-size: 1.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.price-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-tag {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.price-header p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.price-features {
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Contact Section */
.contact-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: 0 30px 100px rgba(0,0,0,0.1);
}

.contact-info {
    background: var(--gold);
    padding: 4rem;
    color: var(--white);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form {
    padding: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input, 
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-main);
    background: #fcfcfc;
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #111;
    color: white;
}

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

.footer-logo p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section-padding { padding: 60px 0; }
    .hero-grid, .solution-flex, .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nav-links { display: none; }
    .problem-grid, .benefits-grid { grid-template-columns: 1fr; }
    .cta-group { 
        flex-direction: column; 
        align-items: center; 
    }
    .btn { width: 100%; max-width: 400px; }
    .solution-flex { flex-direction: column; }
    .solution-stat-grid { width: 100%; }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .community-flex {
        flex-direction: column;
        text-align: center;
    }
    .c-benefit { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    .hero-content h1 { font-size: 2.2rem; }
}
