/* ==================== RESET E VARIÁVEIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d97706;
    --primary-dark: #b45309;
    --primary-light: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fef3c7;
    --bg-white: #ffffff;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --red-light: #fee2e2;
    --red-text: #dc2626;
    --font-sans: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: linear-gradient(to bottom, var(--bg-light), #ffffff, var(--bg-light));
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==================== STICKY BAR ==================== */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.sticky-bar.hidden {
    display: none;
}

.sticky-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-content {
    flex: 1;
}

.sticky-offer {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.sticky-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 119, 6, 0.5);
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 4rem 1rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(253, 230, 138, 0.3), rgba(255, 255, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(217, 119, 6, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(217, 119, 6, 0.03);
    border-radius: 50%;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 1rem 6rem;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: var(--red-text);
    padding: 0.7rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border: 1.5px solid #fca5a5;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(217, 119, 6, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-weight: 500;
}

.hero-subtitle strong {
    color: var(--text-dark);
    font-weight: 800;
    display: inline-block;
}

/* ==================== HERO MOCKUP ==================== */
.hero-mockup {
    margin-bottom: 2rem;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
}

.mockup-image {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    display: block;
    border-radius: 1.2rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mockup:hover .mockup-image {
    transform: scale(1.02);
}

/* ==================== BUTTONS ==================== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    padding: 1.35rem 3rem;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 0.85rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.35s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    flex: 1;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

@media (min-width: 768px) {
    .btn-primary {
        flex: none;
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #8a2e0d);
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(217, 119, 6, 0.6);
}

.btn-secondary {
    border: 2.5px solid #10b981;
    color: white;
    background: #10b981;
    flex: 1;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

@media (min-width: 768px) {
    .btn-secondary {
        flex: none;
    }
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    border-color: #059669;
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    flex: 1;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .btn-light {
        flex: none;
    }
}

.btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: var(--primary-dark);
}

.btn-light-outline {
    border: 2.5px solid white;
    color: white;
    background: transparent;
    flex: 1;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .btn-light-outline {
        flex: none;
    }
}

.btn-light-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.guarantee {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    background: var(--bg-white);
    padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
    .problem-section {
        padding: 5rem 1rem 6rem;
    }
}

.problem-section h2,
.solution-section h2,
.what-you-get h2,
.social-proof h2,
.faq h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    position: relative;
    padding-bottom: 1.2rem;
}

.problem-section h2::after,
.solution-section h2::after,
.what-you-get h2::after,
.social-proof h2::after,
.faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .problem-section h2,
    .solution-section h2,
    .what-you-get h2,
    .social-proof h2,
    .faq h2 {
        font-size: 2.5rem;
        margin-bottom: 3.5rem;
    }
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: var(--red-light);
    border: 2px solid #fecaca;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red-text), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.2);
    border-color: var(--red-text);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.problem-card h3 {
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    background: linear-gradient(135deg, var(--bg-light), #fef9e7);
    padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
    .solution-section {
        padding: 5rem 1rem 6rem;
    }
}

.solution-section h2 .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(217, 119, 6, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.18);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

.benefit-item h3 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== WHAT YOU GET SECTION ==================== */
.what-you-get {
    background: var(--bg-white);
    padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
    .what-you-get {
        padding: 5rem 1rem 6rem;
    }
}

.deliverables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .deliverables {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deliverable-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    background: linear-gradient(to right, var(--bg-light), white);
    border-radius: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.08);
    position: relative;
    overflow: hidden;
}

.deliverable-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.05), transparent);
    transition: right 0.5s ease;
}

.deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.25);
    border-left-width: 6px;
}

.deliverable-card:hover::after {
    right: 100%;
}

.deliverable-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    position: relative;
    z-index: 1;
}

.deliverable-content h3 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.deliverable-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.deliverable-content .price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.9rem;
}

.pricing-box {
    background: #fef7ed;
    color: #000000;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(217, 119, 6, 0.1);
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.pricing-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-old-price {
    text-align: left;
}

.old-price-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.old-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: line-through;
    opacity: 0.8;
    color: #dc2626;
}

.pricing-discount-badge {
    background: rgba(217, 119, 6, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 119, 6, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
    font-weight: 900;
    font-size: 0.95rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.pricing-offer {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-offer-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.pricing-offer-value {
    font-size: 3.5rem;
    font-weight: 1000;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    line-height: 1;
    color: #10b981;
    animation: pulse-price 2s ease-in-out infinite;
}

.pricing-savings {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 700;
    background: rgba(217, 119, 6, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    display: inline-block;
    color: #000000;
}

.pricing-includes {
    background: rgba(217, 119, 6, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.includes-label {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1rem;
    display: block;
}

.includes-list {
    list-style: none;
    text-align: left;
}

.includes-list li {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.includes-list li:last-child {
    margin-bottom: 0;
}

.btn-checkout {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 900;
    border-radius: 0.85rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease-in-out;
    z-index: 2;
}

.btn-checkout:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.btn-checkout:hover::before {
    left: 100%;
}

.btn-checkout:active {
    transform: scale(0.98);
}

.pricing-guarantee {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
    line-height: 1.5;
}

/* ==================== SOCIAL PROOF SECTION ==================== */
.social-proof {
    background: linear-gradient(135deg, var(--bg-gray), #fef3c7);
    padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
    .social-proof {
        padding: 5rem 1rem 6rem;
    }
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(217, 119, 6, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(217, 119, 6, 0.25);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

.testimonial-author {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-info {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: var(--bg-white);
    padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
    .faq {
        padding: 5rem 1rem 6rem;
    }
}

.faq-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.18);
    transform: translateY(-4px);
}

.faq-question {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-size: 1.05rem;
}

.faq-answer {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 1rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 5rem 1rem 6rem;
    }
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 600;
    line-height: 1.8;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-price {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
    }
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

/* ==================== RESPONSIVE FIXES ==================== */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .problem-section h2,
    .solution-section h2,
    .what-you-get h2,
    .social-proof h2,
    .faq h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 1.1rem 2.2rem;
    }

    .pricing-box {
        padding: 2rem;
    }

    .deliverable-card {
        flex-direction: column;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .sticky-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sticky-offer {
        font-size: 0.75rem;
    }

    .sticky-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}
