:root {
    /* Colors */
    --primary: #00B359;
    --primary-hover: #00964b;
    --dark-bg: #0B1120;
    --dark-bg-alt: #111827;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --accent-yellow: #FBBF24;
    --border-color: #E2E8F0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 179, 89, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 179, 89, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

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

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background-color: rgba(0, 179, 89, 0.1);
    color: var(--primary);
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
    color: var(--dark-bg);
}

.logo i {
    font-size: 1.75rem;
}

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

.nav-links a {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,179,89,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.secure-text {
    margin-top: 1rem;
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    margin-right: 0;
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* Pain Points Section */
.pain-points {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0;
}

.pain-points h2 {
    color: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.pain-card:hover .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transform: scale(1.05);
}

.pain-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e2e8f0;
}

.pain-conclusion {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.pain-conclusion strong {
    color: var(--white);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(0, 179, 89, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Target Audience */
.target-audience {
    padding: 5rem 0;
}

.audience-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.audience-item:hover .icon-circle {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 179, 89, 0.2);
}

.audience-item span {
    font-weight: 600;
    color: var(--dark-bg);
}

/* Examples Section */
.examples {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.example-card {
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.example-card:hover {
    transform: translateY(-5px);
}

.example-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.example-card h3 {
    padding: 1.25rem;
    font-size: 1.1rem;
    color: var(--dark-bg);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 1.5rem 0;
    font-style: italic;
    flex-grow: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-details strong {
    font-size: 0.95rem;
    color: var(--dark-bg);
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background-color: var(--dark-bg);
    padding: 6rem 0;
    color: var(--white);
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-content h2 {
    text-align: left;
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    color: var(--dark-bg);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.price-header {
    margin-bottom: 2rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary);
    margin: 1rem 0;
}

.currency {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.price-installments {
    color: var(--text-light);
    font-size: 1.1rem;
    display: block;
}

.secure-checkout {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-badge {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.faq-left {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: fit-content;
}

.shield-large {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 179, 89, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.faq-left h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.faq-left p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.risk-free {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}

.section-header-inline h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 179, 89, 0.1);
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.accordion-header i {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: var(--text-light);
}

/* Footer CTA */
.footer-cta {
    background-color: var(--primary);
    padding: 4rem 0;
    color: var(--white);
}

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

.footer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

.footer-text h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.footer-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-container, .pricing-container, .faq-container {
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-image img {
        max-width: 400px;
    }

    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-text h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .pain-points, .target-audience, .examples {
        padding: 3.5rem 0;
    }

    .benefits, .testimonials, .pricing, .faq {
        padding: 3.5rem 0;
    }

    .nav-links, .header .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Make the product mockup full-width and prominent on mobile */
    .hero-image {
        order: 2;
        width: 100%;
        margin-top: 0.5rem;
    }

    .hero-image img {
        width: 92%;
        max-width: 400px;
        margin-right: 0;
    }

    .hero .btn-large {
        width: 100%;
        max-width: 420px;
    }

    .reviews-summary {
        justify-content: center;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefits-grid, .examples-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        gap: 1.5rem 2rem;
    }

    .audience-item {
        width: calc(33.333% - 1.5rem);
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-content h2 {
        text-align: center;
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 4rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-left {
        padding: 2.5rem 2rem;
    }

    .section-header-inline h2 {
        text-align: center;
    }

    .footer-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .btn-large {
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pain-card {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        justify-content: flex-start;
    }

    .icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .audience-item {
        width: calc(50% - 1rem);
    }

    .icon-circle {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }

    .amount {
        font-size: 3.5rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .price-old {
        font-size: 1.1rem;
    }

    .faq-left, .accordion-header {
        padding: 1.5rem 1.25rem;
    }

    .footer-cta {
        padding: 3rem 0;
    }
}
