:root {
    --primary: #c5a059; /* Gold */
    --secondary: #1a1a1a; /* Dark */
    --accent: #f8f9fa;
    --text: #333;
    --light-text: #666;
    --white: #ffffff;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
}

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

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

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

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 10px 20px;
}

/* Header */
.header {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--primary);
}

.nav a {
    margin: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-trust {
    display: flex;
    gap: 30px;
}

.trust-item strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
}

.trust-item span {
    font-size: 12px;
    color: var(--light-text);
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
}

.before-after-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

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

.ba-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
}

.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }

/* Methods */
.methods {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary);
}

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

.method-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.method-card.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.method-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

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

/* Results Gallery */
.results {
    padding: 100px 0;
    background: #fcfcfc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.result-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.result-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
    font-size: 14px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

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

.pricing-card {
    padding: 50px 30px;
    border: 1px solid #eee;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

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

.pricing-card ul {
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info .logo {
    margin-bottom: 20px;
}

.footer-info p {
    color: #999;
    max-width: 300px;
}

.footer-contacts p {
    margin-bottom: 10px;
}

.footer-social a {
    display: block;
    margin-bottom: 10px;
    color: #999;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 12px;
}

/* Sticky Contact */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-sticky {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.whatsapp-sticky img {
    width: 35px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid, .methods-grid, .pricing-grid, .results-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .nav {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
        margin: 20px 0;
    }
}
