:root {
    --primary: #ff751f;
    --primary-dark: #e05e0f;
    --primary-glow: rgba(255, 117, 31, 0.5);
    --background: #fff3ec;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-dark: #2d2d2d;
    --text-light: #555555;
    --white: #ffffff;
    --accent: #ffae75;
    --shadow-soft: 0 10px 40px rgba(255, 117, 31, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 117, 31, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 117, 31, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 117, 31, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, rgba(255, 117, 31, 0.2) 0%, rgba(255, 117, 31, 0) 100%);
    padding: 0 10px;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff5e00 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-primary::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: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 117, 31, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 117, 31, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 117, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 117, 31, 0);
    }
}

/* Float Animation */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    text-align: center;
}

.sticky-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---------------- SECTIONS ---------------- */

/* Section Spacing Utility */
section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    padding: 140px 0 160px;
    /* Reduced bottom padding since wave is handled */
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fff3ec;
    /* Light orange */
}

/* Abstract Background Shapes */
.hero::before {
    display: none;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    /* Adjust height/scale if needed */
}

.shape-fill {
    fill: var(--primary);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: #ffffff;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: inline-block;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 3.5rem;
    /* Reduced from 4.5rem for longer text */
    margin-bottom: 25px;
    background: linear-gradient(180deg, #2d2d2d 0%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.highlight-orange {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    /* Override gradient */
    font-weight: 800;
    text-shadow: 0 0 25px rgba(255, 117, 31, 0.4);
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero .btn-primary svg {
    width: 22px;
    height: 22px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-benefits span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.check-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.subheadline {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-guarantee-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: -0.5px;
}

/* Pain Points - Glass Cards */
.pain-points {
    padding: 60px 0 100px;
    /* Adjusted padding */
    margin-top: 0;
    /* Removed negative margin to avoid hard cut with white bg */
    background: #ffffff;
    position: relative;
    z-index: 5;
    /* Ensure it sits correctly */
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pain-item {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-10px);
}

.pain-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pain-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.pain-solution {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 117, 31, 0.1);
    /* Light orange */
    color: #000;
    border: 1px solid rgba(255, 117, 31, 0.2);
    backdrop-filter: none;
    /* Remove glass blur if present to ensure clean color */
}

.mt-4 {
    margin-top: 30px;
}

/* About Method */
.about-method {
    background-color: transparent;
    /* Assuming main background covers this or is inherited */
    padding: 80px 0;
}

/* Ensure container allows grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.differential-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.differential-card h3 {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.diff-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.magic-egg-card {
    background: linear-gradient(135deg, #fffcf9 0%, #fff0e3 100%);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    /* Or min-height based on content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.egg-icon {
    font-size: 8rem;
    /* Large emoji size */
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    /* Shadow for 3D effect */
    animation: float 6s ease-in-out infinite;
}

.magic-egg-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.magic-egg-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* Decorations */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 117, 31, 0.1);
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 30px;
    right: 30px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .magic-egg-card {
        min-height: auto;
        padding: 40px;
    }
}

/* Mechanism */
.mechanism {
    padding-top: 60px;
    background-color: #ffffff;
    /* Explicitly white as requested */
    padding-bottom: 100px;
}

.brain-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.serif-font {
    font-family: 'Playfair Display', 'Merriweather', serif;
    /* Use a nice serif if available, else default */
    font-size: 2.5rem;
    color: #2d2d2d;
}

.highlight-dark {
    font-weight: 800;
}

.mechanism {
    /* Using a subtle glass background wrapper concept via container if needed,
       but here we keep it clean */
}

.mechanism-list {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mech-item {
    background: #fff3ec;
    /* Light orange pill */
    padding: 20px 30px;
    border-radius: 15px;
    /* Pill shape-ish */
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.mech-item:hover {
    transform: translateX(10px);
}

.mech-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.small-icon {
    width: 24px;
    height: 24px;
}

.small-icon .check-white {
    font-size: 0.8rem;
}

.check-white {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.mech-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.mechanism-footer-box {
    background: #fff3ec;
    /* Light orange box */
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-container {
    text-align: center;
}

/* Included Section */
.included {
    /* Slightly darker glass or different tint could go here */
}

.image-text-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.text-col {
    flex: 1;
    min-width: 300px;
}

.text-col h2 {
    margin-bottom: 30px;
    /* Added spacing */
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 20px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 10px;
}

.visual-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.book-container {
    perspective: 1500px;
}

.ebook-img {
    transform-style: preserve-3d;
    max-height: 550px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Results Section */
.results {
    text-align: center;
}

.results h2 {
    margin-bottom: 50px;
    /* Added spacing */
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.result-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    /* Restore border */
    transition: all 0.3s ease;
}

/* Results Section */
.results {
    text-align: center;
    background-color: #fff3ec;
    /* Light orange background */
    padding: 80px 0;
}

.results h2 {
    margin-bottom: 50px;
    font-family: 'Playfair Display', 'Merriweather', serif;
}

.chart-icon-header {
    font-size: 3rem;
    margin-bottom: 15px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
    /* Add bottom margin for button spacing */
}

@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    /* More padding for square feel */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    /* Ensure they feel like squares */
    transition: transform 0.3s ease;
    border: none;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 117, 31, 0.1);
}

.btn-strong-orange {
    background: #ff5e00 !important;
    /* Stronger orange */
    box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4) !important;
}

.btn-strong-orange:hover {
    background: #e05200 !important;
}

/* Author Section */
.author {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 243, 236, 0.8));
    margin-top: 50px;
    border-radius: 30px 30px 0 0;
    padding: 80px 0;
}

.author-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.author-image-container {
    flex: 0 0 300px;
    position: relative;
}

.author-image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 20px;
    opacity: 0.2;
    z-index: 0;
}

.author-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.author-img:hover {
    transform: translateY(-5px);
}

.author-text {
    flex: 1;
}

.author-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .author-content {
        flex-direction: column;
        text-align: center;
    }

    .author-image-container {
        flex: 0 0 auto;
        width: 250px;
        margin-bottom: 30px;
    }
}


/* Testimonials Section */
.testimonials {
    background-color: #fffaf6;
    /* Nude suave/White */
    padding: 100px 0;
}

.testimonials .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 117, 31, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 117, 31, 0.15);
}

.testimonial-image {
    width: 100%;
    /* Let height adjust automatically or set a consistent new height */
    height: auto;
    overflow: hidden;
    /* Remove border bottom as there is no content below now */
    border-bottom: none;
}

.testi-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or cover, depending on image aspect ratio, but contain is safer for full proofs */
    background-color: transparent;
}

.testimonial-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-content .quote {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    flex: 1;
}

.author-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-info .name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info .location {
    font-size: 0.85rem;
    color: #999;
}

.mt-5 {
    margin-top: 50px;
}

}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.pricing-card {
    max-width: 600px;
    /* Wider card */
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.pricing-header {
    background-color: #ff5e00;
    /* Strong Orange */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}



.pricing-header h3 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin: 0 0 5px;
    color: #fff;
    font-weight: 700;
}

.pricing-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.pricing-body {
    padding: 50px 40px;
    text-align: center;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    /* Strikethrough is handled by strike tag but this helps */
    margin: 0;
}

.price-label {
    font-size: 1.2rem;
    color: #666;
    margin: 5px 0 0;
}

.big-price {
    display: flex;
    align-items: center;
    /* Aligns baseline roughly, or refine */
    justify-content: center;
    color: #ff5e00;
    font-weight: 800;
    line-height: 1;
    margin: 15px 0;
}

.big-price .currency {
    font-size: 2.5rem;
    margin-right: 5px;
    align-self: flex-start;
    margin-top: 10px;
}

.big-price .amount {
    font-size: 6rem;
    letter-spacing: -2px;
}

.big-price .cents {
    font-size: 2rem;
    align-self: flex-start;
    margin-top: 15px;
}

.payment-info {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.cta-container .btn-block {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 1.2rem;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #f0f0f0;
    /* Optional separator visual */
    padding-top: 30px;
    gap: 10px;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff5e00;
}

.trust-item h4 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 500px) {
    .trust-badges {
        flex-direction: column;
        gap: 30px;
    }

    .big-price .amount {
        font-size: 5rem;
    }
}

.pricing-benefits li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.pricing-benefits li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-footer {
    background-color: #fafafa;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid #eee;
}

.guarantee-icon {
    width: 45px;
    height: 45px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #aaa;
    padding: 60px 0 100px;
    /* Extra bottom padding for sticky CTA */
    text-align: center;
    font-size: 0.95rem;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .sticky-cta {
        display: block;
        animation: slideUp 0.5s ease-out 2s backwards;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100px);
        }

        to {
            transform: translateY(0);
        }
    }

    .image-text-grid {
        flex-direction: column-reverse;
        /* Book on top/bottom depending on preference, usually image first is better in sales but text first here is fine */
    }

    .pain-points {
        margin-top: -30px;
    }
}

.btn-green {
    background: #25d366 !important;
    /* WhatsApp/Checkout Green */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
    background: #1fab55 !important;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff5e00;
    /* Orange text for question */
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff7b31;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ff5e00;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    /* Turn + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 10px 10px 30px;
    color: #ffffff;
    /* White text for answer */
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
    background-color: #fff3ec;
    /* Matches other light sections like header */
    text-align: center;
    padding: 80px 0;
}

.fire-icon-wrapper {
    margin-bottom: 20px;
}

.fire-icon {
    font-size: 3.5rem;
    animation: pulse-glow 2s infinite;
    display: inline-block;
}

.final-cta h2 {
    font-size: 2.2rem;
    color: #2e2e2e;
    /* Dark chocolate/black */
    font-weight: 800;
    /* Bold serif */
    line-height: 1.25;
}

.cta-subtext {
    color: #7a7a7a;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 20px 40px;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.95rem;
}

.trust-pill_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-pill-icon {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .trust-row {
        gap: 15px;
        flex-direction: column;
        /* Stack on very small screens if needed, or row wrap */
        flex-direction: row;
        font-size: 0.85rem;
    }
}

/* ---------------- MOBILE OPTIMIZATION ---------------- */

/* Medium Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        /* Minimized padding to maximize width for text */
    }

    .hero {
        padding: 90px 0 100px;
    }

    .hero-content {
        padding: 0;
    }

    .hero h1 {
        font-size: 1.6rem;
        /* ~25.6px - Lower end of 24-32px range to fit better */
        line-height: 1.25;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        /* Tighter tracking */
        text-wrap: balance;
        /* Balances lines nicely */
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .subheadline {
        font-size: 1.05rem;
        margin-bottom: 30px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 5px;
    }

    .hero .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .hero-guarantee-text {
        font-size: 1.05rem;
        /* Increased for better visibility */
        margin-top: 25px;
        padding: 0 10px;
        line-height: 1.4;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Trust Pill Layout */
    .trust-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile Devices (e.g. iPhone SE, Galaxy S small) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
        /* ~24px - Absolute minimum requested */
    }

    .hero {
        padding-top: 80px;
    }
}