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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Common Elements */
section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}

.text-highlight {
    color: #e1306c;
}

.text-highlighted {
    color: #ff6b6b;
    font-size: 3rem;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.big-message {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0;
    color: #e1306c;
}

/* Header with centered logo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); /* Ensure background is visible */
    height: 60px; 
}

.logo-container-header {
    width: 100%;  
    text-align: center;
}

.vsr-logo-header {
    display: none;
}

.header-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4; 
    padding: 0 15px;
    text-align: center;
    max-width: 90%; 
    margin: auto; 
}

/* Profile picture styling */
.profile-picture {
    display: none;
}

.profile-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 5; 
    flex-shrink: 0; 
}

.chat-badge {
    position: absolute;
    top: 20px;
    right: -120px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.chat-badge:hover {
    background-color: #20ba5a;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.full-profile-img {
    width: 100%;
    height: auto;
    display: block; /* Keep as block */
    max-height: 50vh; 
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

/* Hero Section */
.hero {
    padding: 0;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
    height: 100vh; 
    min-height: 500px; /* Minimum height */
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: flex-start; /* Start content from the top */
    padding-top: 70px; /* Increased padding to push content below header */
    padding-bottom: 10px; 
}

.hero-content-container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
    width: 90%; 
    max-width: 1000px; 
    margin: auto; 
    flex-grow: 1; 
    gap: 5px; /* Reduce gap slightly if needed */
}

.nutritionist-image.full-width {
    display: none; 
}

.hero-headline {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 15px 10px 15px; 
    text-align: center;
    background: #fafafa;
    z-index: 2;
    color: #333;
    flex-shrink: 1; 
}

.hot-tag {
    display: none; 
}

.main-headline {
    display: none; 
}

.intro-text {
    font-size: 1.0rem; 
    max-width: 600px;
    margin-bottom: 15px; 
    color: #333; 
    line-height: 1.4; 
}

.saiba-mais-button {
    background-color: #e1306c;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    margin-top: 20px;
}

.saiba-mais-button:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
}

.logo-container {
    display: none; 
}

.vsr-logo {
}

.logo-container-small {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.vsr-logo-small {
    width: 120px;
    height: auto;
    margin: 0 auto;
}

.vsr-logo-footer {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(2);
}

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

/* Problem Section */
.problem-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight {
    font-weight: 700;
    font-size: 1.2rem;
    color: #e1306c;
    margin: 20px 0;
}

/* Method Section */
.method-section {
    background-color: #fafafa;
    padding: 60px 0;
}

.method-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.method-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.method-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e1306c;
}

.method-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    align-items: center; /* CENTER method items */
    text-align: center;   /* Center text inside each item */
}

.method-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    width: 100%;
    max-width: 720px;
    justify-content: center; /* center content horizontally */
    flex-direction: row;
}

/* Ensure icons inside method section match feature icon size */
.method-item .icon-lucide,
.method-icon .icon-lucide {
    font-size: 2.8rem; /* match features */
    color: #e1306c;
    line-height: 1;
}

/* make method-item layout adapt on small screens */
@media (max-width: 767px) {
    .method-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .method-icon {
        margin-right: 0;
        width: auto;
        height: auto;
    }
}

.icon-lucide {
    display: inline-block;
    line-height: 1;
    font-size: 3rem;
}

.method-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.method-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    color: #e1306c;
}

/* Features Section */
.features-section {
    background-color: #ffffff; 
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: #fafafa; 
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon .icon-lucide {
    font-size: 2.8rem; 
    color: #e1306c; 
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0; 
}

/* Results Section */
.results-section {
    background-color: #fafafa;
    padding: 60px 0;
}

.results-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.results-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
}

.results-tagline {
    font-size: 1.2rem;
    margin-top: 30px;
    font-weight: 600;
}

/* Price Section */
.price-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.price-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-box {
    background: linear-gradient(45deg, rgba(64, 93, 230, 0.1), rgba(225, 48, 108, 0.1));
    border-left: 4px solid #e1306c;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    font-style: italic;
}

.testimonial-box .quote {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-box .author {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    font-style: normal;
}

.price-tag-container {
    margin: 40px 0;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-tag {
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #198754;
}

.price-cta {
    margin-top: 30px;
}

/* Price justification styles */
.price-justification {
    margin-top: 30px;
    text-align: left;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-justification h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.price-justification .question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e1306c;
    margin-bottom: 20px;
    text-align: center;
}

.price-justification blockquote {
    border-left: 4px solid #e1306c;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
}

.price-justification blockquote footer {
    font-weight: 600;
    margin-top: 10px;
    text-align: right;
    font-style: normal;
}

.price-justification .highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #fafafa;
    padding: 60px 0;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.guarantee-icon {
    margin-bottom: 20px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-badge {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.guarantee-text p {
    margin-bottom: 10px;
}

.guarantee-img-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.guarantee-img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
}

/* Legal Guarantee Section */
.legal-guarantee-section {
    background-color: #fff5f5;
    padding: 60px 0;
}

.legal-guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0;
    color: #e1306c;
}

/* For You Section */
.for-you-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.for-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.for-you-list {
    list-style: none;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.for-you-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.for-you-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e1306c;
    font-weight: 700;
}

/* About Section */
.about-section {
    background-color: #fafafa;
    padding: 60px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Urgency Section */
.urgency-section {
    background-color: #fafafa;
    padding: 60px 0;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0;
    color: #e1306c;
}

.urgency-cta {
    margin-top: 30px;
}

/* Last Call Section */
.last-call {
    background-color: #333;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.last-call-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.last-call-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.last-call-cta {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0;
    color: #e1306c;
}

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin-top: 15px; 
}

.cta-button {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    border: none;
    padding: 12px 25px; 
    font-size: 1.0rem; 
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    text-transform: uppercase;
    line-height: 1.3; 
}

.cta-button:hover {
    background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4, #5851db, #405de6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
}

.secure-payment {
    margin-top: 10px; 
    margin-bottom: 10px; 
    font-size: 0.8rem; 
    color: #6c757d;
    line-height: 1.3;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #198754;
    margin: 20px 0;
}

.modal-button {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4, #5851db, #405de6);
}

/* Footer */
footer {
    background-color: #212529;
    color: #6c757d;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* Legal Disclaimer styling */
.legal-disclaimer {
    text-align: left;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #999;
}

.legal-disclaimer h4 {
    color: #adb5bd;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.legal-disclaimer p {
    margin-bottom: 10px;
    font-size: 0.75rem;
}

/* New and updated styles */
.hero-title {
    font-size: 1.8rem; 
    margin-bottom: 10px; 
    color: #333;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Results grid styling */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.result-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.result-icon {
    margin-bottom: 15px;
}

/* NEW: larger icons for results cards */
.results-grid .result-icon .icon-lucide {
    font-size: 3.8rem;
    color: #e1306c;
    display: inline-block;
    line-height: 1;
    margin-bottom: 8px;
}

.result-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

/* About section credentials */
.about-credentials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.credential-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    width: 180px;
}

.credential-icon {
    margin-bottom: 10px;
}

.credential-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* What's included in price */
.whats-included {
    background-color: #fff5f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.whats-included h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e1306c;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.included-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e1306c;
    font-weight: bold;
}

.installments {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    margin-top: 50px;
    text-align: left;
}

.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e1306c;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #fff;
    line-height: 1.5;
    border-top: 1px solid #dee2e6;
}

.faq-question.active {
    background-color: #f0f0f0;
}

/* Profit Simulator Section */
.profit-simulator-section {
    background-color: #f8f8ff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.profit-simulator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.05) 0%, rgba(64, 93, 230, 0.05) 100%);
    z-index: 0;
}

.profit-simulator-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.profit-calculator {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.profit-calculator h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
}

.calc-input-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.calc-input-group input {
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.calc-input-group input:focus {
    border-color: #e1306c;
    outline: none;
}

.calculator-results {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
}

.result-item {
    margin-bottom: 15px;
}

.result-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e1306c;
}

.result-description {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.profit-example {
    background: linear-gradient(45deg, rgba(64, 93, 230, 0.1), rgba(225, 48, 108, 0.1));
    border-left: 4px solid #e1306c;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.profit-example h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.example-calculation {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.example-highlight {
    font-weight: 700;
    color: #e1306c;
}

.profit-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0;
    color: #e1306c;
}

@media (min-width: 768px) {
    .calculator-inputs {
        flex-direction: row;
        gap: 30px;
    }
    
    .calc-input-group {
        flex: 1;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .chat-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
        gap: 5px;
        right: -80px;
        border-radius: 20px;
    }
    
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero {
        height: auto; 
        min-height: 100vh; 
        padding-top: 70px; 
        justify-content: center; 
    }

    .hero-content-container {
       gap: 10px; 
    }

    .full-profile-img {
        max-height: 40vh; 
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-item {
        padding: 15px;
    }
    
    .result-item h3 {
        font-size: 1.1rem;
    }
    
    .result-item p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon .icon-lucide {
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }
    
    .method-items {
        gap: 15px;
    }
    
    .method-box {
        padding: 20px;
    }
    
    .method-box h3 {
        font-size: 1.3rem;
    }
    
    .method-text h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-box {
        padding: 15px;
    }
    
    .testimonial-box .quote {
        font-size: 1rem;
    }
    
    .big-message {
        font-size: 1.15rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .price-tag-container {
        padding: 20px;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .whats-included {
        padding: 15px;
    }
    
    .whats-included h3 {
        font-size: 1.2rem;
    }
    
    .included-list li {
        font-size: 0.95rem;
        padding: 6px 0 6px 25px;
    }
    
    .guarantee-img {
        max-width: 150px;
    }
    
    .faq-section h3 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .requirements-list {
        gap: 12px;
    }
    
    .req-content h4 {
        font-size: 1rem;
    }
    
    .req-content p {
        font-size: 0.9rem;
    }
    
    .last-call-title {
        font-size: 1.5rem;
    }
    
    .last-call-text {
        font-size: 1rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* New: Make requirement items icons match Features size and align items */
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    margin-top: 15px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    text-align: left;
}

.req-icon {
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-icon .icon-lucide,
.requirement-item .icon-lucide {
    font-size: 2.8rem; /* same size as feature icons */
    color: #e1306c;
    line-height: 1;
}

/* Ensure text takes remaining space and stacks nicely on small screens */
.req-content {
    flex: 1 1 auto;
}

@media (max-width: 767px) {
    .requirement-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 10px;
    }

    .req-icon {
        flex: 0 0 44px;
    }

    .req-icon .icon-lucide,
    .requirement-item .icon-lucide {
        font-size: 2.4rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .header-text {
        font-size: 0.7rem;
    }
    
    .features-section {
        padding: 30px 0;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .chat-badge {
        padding: 5px 10px;
        font-size: 0.65rem;
        right: -70px;
        top: 15px;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
    }
    
    .cta-button {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    
    .secure-payment {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content-container {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }
    
    .profile-container {
        max-width: 350px;
    }
    
    .hero-headline {
        text-align: left;
        align-items: flex-start;
    }
    
    .cta-container {
        text-align: left;
    }
    
    .chat-badge {
        right: -130px;
    }
}

/* Ensure price and urgency CTAs are centered (override general .cta-container left alignment) */
.cta-container.price-cta,
.cta-container.urgency-cta {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

/* Reinforce centering on large screens */
@media (min-width: 992px) {
    .cta-container.price-cta,
    .cta-container.urgency-cta {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.urgency-box {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin: 20px auto;
    max-width: 900px;
    text-align: left;
}

.urgency-icon {
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225,48,108,0.06), rgba(64,93,230,0.04));
    border-radius: 12px;
    height: 72px;
    width: 72px;
}

/* Make the urgency icon match the feature icon sizing and color */
.urgency-icon .icon-lucide,
.urgency-box .icon-lucide {
    font-size: 2.8rem; /* same as feature icons */
    color: #e1306c;
    line-height: 1;
}

/* Ensure text next to icon stacks nicely and remains centered on small screens */
.urgency-box p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .urgency-box {
        flex-direction: column;
        gap: 12px;
        padding: 14px;
        text-align: center;
    }

    .urgency-icon {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }

    .urgency-icon .icon-lucide,
    .urgency-box .icon-lucide {
        font-size: 2.2rem;
    }
}

/* Prospection Section */
.prospection-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.prospection-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.prospection-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.prospection-box h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e1306c;
}

.prospection-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.prospection-step {
    display: flex;
    gap: 15px;
    text-align: left;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #405de6, #e1306c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.prospection-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    color: #e1306c;
}

@media (max-width: 767px) {
    .prospection-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prospection-box {
        padding: 20px;
    }
    
    .prospection-box h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .prospection-tagline {
        font-size: 1.15rem;
    }
}

@media (max-width: 575px) {
    .prospection-section {
        padding: 30px 0;
    }
}