:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --success-color: #d6a700;
    --danger-color: #e74c3c;
    --warning-color: #e74c3c;
    --dark-color: #5D4037;
    --light-color: #fbf2ed;
    --white: #ffffff;
    --beige-light: #fbf2ed;
    --brown-medium: #CD853F;
    --brown-dark: #8B4513;
    --brown-darker: #5D4037;
    --gradient-primary: linear-gradient(135deg, #5D4037 0%, #5D4037 100%);
    --shadow-light: 0 2px 10px rgba(139, 69, 19, .1);
    --shadow-medium: 0 4px 20px rgba(139, 69, 19, .15);
    --border-radius: 12px;
    --transition: all .3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--brown-darker);
    background-color: var(--beige-light);
    font-size: 16px;
}

@keyframes pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .8
    }

    100% {
        opacity: 1
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-10px)
    }

    60% {
        transform: translateY(-5px)
    }
}

@keyframes pulse-button {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.social-proof-bar {
    background: var(--success-color);
    color: var(--white);
    padding: 10px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.social-proof-bar .stars {
    color: #ffd700;
    margin: 0 5px;
}

.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 20px 0;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--brown-medium);
    position: relative;
    text-align: center;
}

.pricing-card .offer-badge-card {
    background: var(--danger-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--dark-color);
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 10px 0;
    line-height: 1;
}

.price-subtitle {
    font-size: .9rem;
    color: #666;
    margin-bottom: 15px;
}

.features-list {
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

.features-list .feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--brown-darker);
}

.features-list .feature i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-button {
    background: var(--brown-medium);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: var(--shadow-light);
    width: 100%;
    margin: 15px 0;
    line-height: 1.2;
    min-height: 60px;
    position: relative;
}

.cta-button:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.pulse {
    animation: pulse-button 2s infinite;
}

.section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 15px;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    color: var(--brown-darker);
    margin-bottom: 10px;
}

.section-header p {
    font-size: .95rem;
    color: #666;
}

.preview-gallery {
    margin-top: 25px;
    padding: 0 15px;
}

.preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 15px;
    transition: var(--transition);
    height: 360px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.preview-content {
    text-align: center;
    color: var(--white);
}

.preview-content p {
    font-size: .9rem;
    font-weight: 600;
    margin: 0;
}

.target-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.target-item i {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.target-item p {
    margin: 0;
    font-size: .95rem;
}

.feature-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: .85rem;
    color: #666;
    margin: 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 18px;
    box-shadow: var(--shadow-light);
    margin-bottom: 15px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-info h5 {
    font-size: .95rem;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: .75rem;
    color: #666;
    display: block;
}

.stars {
    color: #ffd700;
    margin-top: 3px;
    font-size: .8rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
}

.guarantee-section {
    background: var(--success-color);
    color: var(--white);
    padding: 30px 15px;
    text-align: center;
}

.guarantee-badge {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.guarantee-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.faq-section {
    padding: 30px 15px;
    background: var(--white);
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--light-color);
    border: none;
    padding: 12px 15px;
    width: 100%;
    text-align: left;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #d5dbdb;
}

.faq-question.active {
    background: var(--primary-color);
    color: var(--white);
}

.faq-question i {
    transition: transform .3s ease;
}

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

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-answer.active {
    padding: 12px 15px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    font-size: .85rem;
}

.final-cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 15px;
    text-align: center;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 25px 15px;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: .8rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
    color: var(--white);
    font-size: 14px;
}

.benefit-item i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
}

.benefit-item span {
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col {
    flex: 1;
    padding: 0 10px;
}

.col-12 {
    width: 100%;
    padding: 0 10px;
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .col-sm-6 {
        width: 50%;
    }

    .preview-item {
        height: 420px;
    }
}

@media (min-width: 768px) {
    .pricing-card {
        margin: 20px;
        padding: 25px 20px;
    }

    .section {
        padding: 40px 0;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .col-lg-6 {
        width: 50%;
    }
}