/* Global Reset & Base Styles */
:root {
    --primary-pink: #d95b89;
    --primary-pink-light: rgba(217, 91, 137, 0.1);
    --primary-pink-overlay: rgba(217, 91, 137, 0.85);
    --accent-yellow: #fffd0a;
    --text-dark: #333333;
    --text-white: #ffffff;
    --bg-light-pink: rgba(239, 226, 217, 0.4);
    --bg-white: #ffffff;
    --gradient-green: linear-gradient(90deg, #03dc54 0%, #02b547 100%);
    --gradient-green-hover: linear-gradient(90deg, #02b547 0%, #03dc54 100%);
    --shadow-text: 1px 1px 2px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    font-style: italic;
    /* Applied from reference image */
    font-size: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    /* Bolder as per image */
    line-height: 1.2;
    font-style: italic;
    /* Matching the requested style */
    text-transform: uppercase;
    /* Often pairs well with this sales copy style, can be removed if not desired but fits the previous vibe */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-white {
    color: var(--text-white);
}

.text-pink {
    color: var(--primary-pink);
}

.text-yellow {
    color: var(--accent-yellow);
}

.highlight-yellow {
    color: #ffef00;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

.font-curved {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.highlight-text {
    color: var(--accent-yellow);
    text-shadow: var(--shadow-text);
}

.shadow-text {
    text-shadow: var(--shadow-text);
}

/* Button Styles */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gradient-green);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
    transition: all 0.1s ease;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.btn-custom:hover {
    background: var(--gradient-green-hover);
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.6);
}

@media (max-width: 768px) {
    .btn-custom {
        padding: 15px 20px;
        font-size: 1.1rem;
        max-width: 90%;
    }
}

.btn-custom i {
    margin-left: 10px;
}

/* Pulse Animation for Button */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 220, 84, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(3, 220, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(3, 220, 84, 0);
    }
}

.btn-pulse {
    animation: pulse-green 2s infinite;
}

/* Section Specifics */

/* Hero Section - Refined Pastel */
.hero-section {
    background-color: #ECD0DC;
    /* Adjusted to match studio image background */
    background-image: none;
    padding: 60px 0 40px;
    position: relative;
    color: #333;
    /* Dark text base */
    overflow: hidden;
}

/* Pseudo-overlay for contrast - REMOVED to keep color pure */
.hero-section::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Better spacing control */
    max-width: 900px;
    margin: 0 auto;
}

/* 1. Main Headline - Updated to White Text with Strong Shadow */
.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 5px;
    padding: 0 10px;
    /* Default small padding */
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.4rem;
        /* Further reduced from 1.6rem */
        padding: 0 15px;
        line-height: 1.4;
    }

    .hero-subheadline-text {
        font-size: 1rem;
        /* Reduce subheadline on mobile */
        padding: 0 20px;
    }
}

.hero-headline .text-underline {
    text-decoration: underline;
    text-decoration-color: #d95b89;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

/* 2. Secondary Headline */
.hero-headline-2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #d95b89;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-headline span.highlight-purple,
.hero-headline-2 span.highlight-purple {
    color: #c900ff;
    /* Bright Purple */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 0;
}


/* 3. Specificity Line */
.hero-specificity {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

/* 4. Subheadline Explanatory */
.hero-subheadline-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #444;
    max-width: 700px;
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Image Integration */
.hero-image-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image-3d {
    width: 100%;
    max-width: 500px;
    /* Slightly smaller for balance */
    height: auto;
    filter: none;
    /* REMOVED shadow to blend box edges */
    transition: transform 0.3s ease;
}

.hero-image-3d:hover {
    transform: scale(1.02);
}

/* 5. Benefits List */
.benefits-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 15px;
    border-radius: 50px;
}

.benefit-item i {
    color: #2cb742;
    /* Green check/icon */
}

/* 6. Urgency */
.urgency-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d95b89;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* 7. New Big CTA Button */
.btn-hero-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2cb742 0%, #229635 100%);
    color: white;
    padding: 15px 60px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 0 #186e26, 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s, box-shadow 0.1s;
    width: 100%;
    max-width: 400px;
}

.btn-hero-offer:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #186e26, 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-hero-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #186e26, 0 15px 25px rgba(0, 0, 0, 0.25);
}

.btn-hero-main-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero-price {
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
}


/* Features / Mechanism Section */
.features-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-pink);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

/* Target Audience Section */
.audience-section {
    padding: 60px 0;
    background-color: var(--bg-light-pink);
}

/* Highlight Purple Background for Titles */
.highlight-purple-bg {
    background-color: #a000ff;
    color: white;
    padding: 2px 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.5;
}

/* Certificate Section Grid - Two Columns */
.certificate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    max-width: 1000px;
    margin: 40px auto;
}

.certificate-section .container {
    max-width: 1000px;
}

.certificate-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.certificate-img-container {
    width: 100%;
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Simple Grid for "Para Quem É" Section */
.simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    /* Vertical gap 30, Horizontal 20 to bring text closer if needed */
    max-width: 900px;
    margin: 40px auto 0;
    justify-items: center;
    /* Center items in their cells */
}

.simple-item {
    text-align: center;
    padding: 10px;
    width: 100%;
}

.simple-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audience-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.audience-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    font-style: italic;
}

/* Modules Section */
.modules-section {
    padding: 60px 0;
    background: #fff;
}


/* Gallery Section */
/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: url('../imagens sites/fundo-tecido.png');
    /* Placeholder for fabric background if available, otherwise solid or gradient */
    background-color: #fcebf4;
    /* Fallback to pastel pink */
}

/* Yellow Highlight Title Style */
.text-yellow-highlight {
    color: #ffef00;
    /* Bright yellow */
    text-shadow: 2px 2px 0px #000;
    /* Sharp hard shadow */
    font-weight: 900;
    text-transform: none;
    /* Sentence case as per image */
    font-size: 1.8rem;
    padding: 0 10px;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gallery-collage-item {
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    /* Slight rounding */
    transition: transform 0.3s;
    background: transparent;
    border: none;
    display: flex;
    /* Ensures image centers or stretches properly */
    justify-content: center;
}

.gallery-collage-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.gallery-collage-item:hover {
    transform: scale(1.02);
}

.gallery-note {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-weight: 700;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #333;
}

.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--primary-pink);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card::before {
    content: 'OFERTA EXCLUSIVA';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-yellow);
    color: black;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-pink);
    line-height: 1;
    margin: 10px 0 30px;
}

/* Footer */
/* Footer Cleanup */
footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Fix for Initial Text Spacing */
.section-title {
    line-height: 1.6 !important;
    margin-bottom: 50px;
}



/* Bonus Section Alignment - STRICT CENTER */
.audience-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

@media (max-width: 900px) {
    .audience-list {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        max-width: 400px;
        /* Limit width on mobile */
        margin-left: auto;
        margin-right: auto;
    }
}

.bonus-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* STRICT CENTER ITEMS */
    text-align: center;
    /* STRICT CENTER TEXT */
    height: 100%;
    transition: transform 0.3s;
}

.bonus-card .img-container {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.bonus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bonus-card h3 {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* CENTER */
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
    width: 100%;
}

.bonus-card .description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
    text-align: center;
    /* Explicitly center description */
}

/* Social Proof - Side by Side (Restored) */
.social-proof-container {
    display: flex;
    /* Flex row by default */
    flex-direction: row;
    align-items: flex-start;
    /* Align top edges */
    justify-content: center;
    gap: 30px;
    /* Space between the big image and the stack */
    max-width: 1100px;
    margin: 40px auto;
}

.proof-col-left {
    width: 50%;
    flex: 1;
}

.proof-col-right {
    width: 50%;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Stack small images vertically */
    gap: 20px;
}

.proof-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: block;
}

@media (max-width: 768px) {
    .social-proof-container {
        flex-direction: column;
        align-items: center;
    }

    .proof-col-left,
    .proof-col-right {
        width: 100%;
    }
}



/* Guarantee Section Alignment - STRICT CENTER */
.container-tight {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    /* Flexbox for strict alignment */
    flex-direction: column;
    align-items: center;
    /* Horizontally center everything */
    text-align: center;
    /* Center text */
}

.guarantee-section {
    padding: 80px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    margin: 0 auto 20px auto;
    display: block;
    max-width: 150px;
    /* Ensure size control */
}

/* FAQ Section Alignment - Using container-tight */
.faq-section {
    padding: 60px 0;
    background: #fdfbf7;
    /* Slight contrast if needed, or white */
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    /* Questions usually look better left-aligned or justified, but let's try left inside centered container */
    max-width: 800px;
    margin: 0 auto;
    /* Centers the grid itself */
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #555;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .social-proof-container {
        grid-template-columns: 1fr;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
    /* Cards/Wrappers stretch to same height */
    margin: 40px 0;
}

/* Wrapper to handle alignment of bottom buttons */
.pricing-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    height: 100%;
}

/* Plan Card Container - White Box */
.plan-card {
    background: white;
    border-radius: 20px;
    width: 100%;
    border: 2px solid #e0e0e0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    overflow: visible;
    /* Allow badges to peek if needed */
    padding: 10px;
    /* Inset content */
    margin-bottom: 20px;
    /* Space before footer text */
    flex-grow: 1;
    /* Stretch white box to fill available space (optional, or let content dictate) */
    /* If we want buttons aligned, allow this to grow? No, usually footer grows `margin-top: auto` */
}

.plan-footer-area {
    margin-top: auto;
    /* Pushes to bottom */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Specific Plan Borders */
.plan-card.plan-basic {
    border-color: #333;
}

.plan-card.plan-pro {
    border: 3px solid #00c73c;
    /* Strong green border */
    box-shadow: 0 0 15px rgba(0, 200, 60, 0.3);
    /* Green glow */
    z-index: 2;
}

.plan-card.plan-pro:hover {
    transform: translateY(-5px);
}

/* Header Areas - Badge Style */
.plan-header-area {
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
    border-radius: 15px;
    /* Rounded corners */
}

.header-basic {
    background-color: #000;
}

.header-pro {
    background: linear-gradient(180deg, #ff9966 0%, #ff5e62 100%);
}

.plan-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Stars */
.plan-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0 30px;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes bottom content down */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-features i {
    margin-top: 4px;
    /* Align icon with text top */
}

/* Buttons */
.btn-price-pill {
    display: inline-block;
    padding: 15px 60px;
    /* Wider padding */
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    /* Larger text */
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: transform 0.1s;
    min-width: 200px;
    /* Minimum width */
}

.btn-price-basic {
    background: #000;
    border: 2px solid #333;
}

.btn-price-pro {
    background: #00c73c;
    border: 2px solid #00992e;
    box-shadow: 0 5px 20px rgba(0, 200, 60, 0.4);
}

.btn-price-pill:hover {
    transform: scale(1.05);
}

/* Buy Action Buttons inside cards */
.plan-card .btn-custom {
    width: 90%;
    /* Almost full width */
    margin: 0 auto;
    /* Center it */
    display: flex;
    justify-content: center;
    padding: 15px 10px;
    font-size: 1.1rem;
    /* Slightly smaller text for fit */
    border-radius: 6px;
    /* Less rounded, more like reference block */
}

/* Sales Text Container - mimicking the reference image */
.text-content-container {
    max-width: 700px;
    /* Narrower for better readability */
    margin: 30px auto;
    padding: 0 15px;
}

.sales-text {
    text-align: left;
    /* Left aligned as per updated reference */
    font-family: 'Lato', sans-serif;
    font-size: 1.35rem;
    /* Larger, more impactful */
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
    /* Slightly heavier than normal */
}

/* Ensure strong tags pop */
.sales-text strong {
    font-weight: 900;
    color: #000;
    text-decoration: underline;
    /* Added underline for emphasis seen in some sales letters */
    text-decoration-color: var(--primary-pink);
    text-decoration-thickness: 2px;
}

/* Clean FAQ Container */
.faq-list-container {
    max-width: 800px;
    margin: 40px auto;
    display: grid;
    gap: 20px;
}

/* FAQ Cards Styling */
.faq-card {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    border-top: 4px solid var(--primary-pink);
    /* Accent top border */
    text-align: center;
    transition: transform 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.faq-card p {
    font-family: 'Lato', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* =========================================
   GLOBAL MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {

    /* 1. Base Readability */
    html {
        font-size: 16px;
        /* Return to standard size for clarity */
    }

    body {
        line-height: 1.7;
        /* More breathing room between lines */
    }

    /* 2. Fix Justification Issues */
    .text-justify {
        text-align: left !important;
        /* Justify is hard to read on narrow screens */
        hyphens: auto;
    }

    p {
        margin-bottom: 20px;
        /* Clear separation between paragraphs */
        font-size: 1rem;
        color: #444;
        /* Soften pure black for less glare */
    }

    /* 3. Shrink Giant Titles */
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    h1,
    h2,
    h3 {
        word-wrap: break-word;
        /* Prevent overflow */
    }

    /* 3. Tame the Hero Text */
    .hero-headline {
        font-size: 1.5rem !important;
        padding: 0 10px;
    }

    .hero-headline-2 {
        font-size: 1.2rem !important;
    }

    /* 4. Increase Container Breathing Room */
    .container {
        padding: 0 20px;
    }

    /* 5. Optimize Image Grids (Block 2 specifically) */
    .features-section img {
        /* Ensure images in the feature grid don't look too massive */
        max-width: 100% !important;
        /* Stack them or keep them constrained */
        width: auto;
    }

    /* If we want to keep the 2-col layout for images in block 2 but safer */
    .features-section div[style*="flex"] img {
        max-width: 48% !important;
        /* Slightly larger than 45% for fit */
        height: auto;
    }

    /* 6. Pricing Cards Mobile Scale */
    .plan-card {
        transform: none !important;
        /* Remove hover scales on mobile */
        max-width: 100%;
        /* Full width */
    }

    .pricing-grid {
        gap: 20px;
        margin: 20px 0;
    }

    /* 7. Button Mobile Sizing */
    .btn-custom {
        padding: 15px 10px !important;
        font-size: 1rem !important;
        width: 100% !important;
    }

    .btn-hero-offer {
        padding: 12px 20px;
        width: 95%;
    }

    /* Fixed Layouts */
    .expert-section p {
        color: #ffffff !important;
        opacity: 1 !important;
    }

    .exclusive-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: #ffef00;
        color: #000;
        font-weight: 900;
        padding: 5px 25px;
        transform: rotate(12deg) translate(5px, -15px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 100;
        font-size: 0.85rem;
        text-transform: uppercase;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .pricing-grid {
        margin-top: 50px !important;
    }
}