/* --- Global Styles & Variables --- */
:root {
    --color-primary: #007bff; /* Calming Blue */
    --color-secondary: #ffc107; /* Soft Yellow Accent (Value/Energy) */
    --color-cta: #dc3545; /* Red/Orange for Urgency & CTA */
    --color-bg-light: #f4f7fa;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    background-color: white;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: #004c99; /* Deep Blue for Authority */
}

h2 {
    font-size: 1.8em;
    margin-bottom: 0.7em;
}

section {
    padding: 40px 5%;
    text-align: center;
}

/* --- Utility Classes --- */
.highlight-text {
    color: var(--color-cta);
    font-weight: 700;
}
.mobile-only {
    display: none;
}
.mobile-hide {
    display: none;
}
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    .mobile-hide {
        display: none !important;
    }
}


/* --- CTA Button Styling --- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 15px 0;
    border-radius: 50px; /* Rounded UI look */
    text-decoration: none;
    font-size: 1.4em;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--color-cta);
    color: white;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 0 #b32a38; /* 3D effect */
}

.cta-button:hover {
    background-color: #b32a38;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #95232e;
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px;
    font-size: 1.2em;
    border-radius: 0;
}

/* --- 1. Hero Section --- */
.hero-section {
    background-color: var(--color-bg-light);
    padding-top: 20px;
}

.trust-bar {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.9em;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.2em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.social-badges {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-badges i {
    color: var(--color-primary);
    margin-right: 5px;
}

.image-placeholder {
    height: 300px; /* Placeholder visual height */
    width: 100%;
    margin-top: 25px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
    border-radius: 8px;
}

/* --- 2. Pain Problem Section --- */
.problem-section {
    background-color: white;
}

.problem-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.icon-card {
    flex-basis: 30%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff8e1; /* Soft yellow hint */
}

.icon-card i {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* --- 3. My Honest Review (Story Block) --- */
.review-story {
    background-color: var(--color-bg-light);
    border-top: 5px solid var(--color-secondary);
}

.story-block {
    text-align: left;
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.story-block h3 {
    color: var(--color-cta);
    margin-bottom: 10px;
}

.story-visual {
    height: 200px;
    width: 100%;
    background-color: #ccc;
    margin: 15px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #444;
}

.story-timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

.timeline-step {
    flex-basis: 50%;
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
}

.timeline-step i {
    color: var(--color-primary);
    font-size: 1.5em;
    margin-bottom: 5px;
}

/* --- 4. Benefits & Features --- */
.benefit-features {
    padding-bottom: 50px;
}

.micro-copy {
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

.benefit-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 25px;
}

.benefit-card {
    flex-basis: calc(33% - 20px);
    background-color: #e6f7ff; /* Light Blue for Calming/Support */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* --- 5. Social Proof Section --- */
.social-proof-section {
    background-color: #fff;
    border-top: 1px solid #eee;
}



.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    flex-basis: calc(45% - 10px);
    background-color: var(--color-bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating {
    color: gold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.customer-info {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

/* --- 6. Final Offer Section --- */
.final-offer-section {
    background-color: #fffae6; /* Bright/Soft Yellow for Offer */
    border-top: 5px solid var(--color-secondary);
}

.countdown {
    font-size: 3em;
    font-weight: 700;
    color: var(--color-cta);
    margin: 15px 0;
    background-color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.offer-copy {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.final-cta {
    font-size: 1.6em;
    padding: 20px 40px;
}

/* --- FAQ & Footer --- */
.faq-section {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.faq-item h3 {
    font-size: 1.1em;
    cursor: pointer;
    color: var(--color-primary);
}
.faq-item p {
    font-size: 0.95em;
    margin-top: 5px;
    padding-left: 10px;
    color: #555;
}


.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 30px 5%;
    font-size: 0.8em;
}

.guarantee-badge {
    color: #00ff73; /* Bright green for trust */
    font-size: 1.1em;
    margin-bottom: 10px;
}

.guarantee-badge i {
    margin-right: 5px;
}

.trust-logos {
    margin: 15px 0;
    /* Placeholder for actual image logos */
    height: 30px; 
    background-color: #444; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
}

.site-footer p {
    margin-top: 15px;
    color: #777;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    section {
        padding: 30px 5%;
    }
    
    .hero-section h1 {
        font-size: 1.8em;
    }
    
    .cta-button {
        font-size: 1.2em;
        padding: 12px 25px;
    }
    
    .problem-icons, .story-timeline {
        flex-direction: column;
        gap: 15px;
    }
    
    .icon-card {
        flex-basis: 100%;
    }

    .benefit-card {
        flex-basis: 100%;
        margin-bottom: 15px;
    }
    
    .testimonial {
        flex-basis: 100%;
    }
    
    .video-embed-placeholder {
        height: 200px;
    }

    .final-cta {
        font-size: 1.4em;
    }
}
.review-story .story-block .after-img {
    display: block; /* Make image a block element to control margin */
    max-width: 100%; /* Ensures image is fully responsive within its container */
    height: auto; /* Maintains aspect ratio */
    margin: 15px auto; /* Center the image and add vertical spacing */
    border-radius: 8px; /* Slightly rounded corners for a modern look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border: 3px solid #009688; /* A calming, fresh green border to signify "after" */
    object-fit: cover; /* Ensures the image covers the area without distortion, if a specific height is set */
}

/*video screen */


.story-visual.after-img {
    display: block; /* Important for full width control */
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    
    /* Styling to show the pain/problem */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    border: 3px solid #cc0000; /* Red border to signify pain/problem */
    
    /* If the HTML is currently a DIV placeholder, these styles apply: */
    background-color: #ddd; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #444;
}

/* Ensure that if it is an actual <img> tag, it follows the rules */
.story-visual.after-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.story-visual.before-img {
    display: block; /* Important for full width control */
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    
    /* Styling to show the pain/problem */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    border: 3px solid #cc0000; /* Red border to signify pain/problem */
    
    /* If the HTML is currently a DIV placeholder, these styles apply: */
    background-color: #ddd; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #444;
}

/* Ensure that if it is an actual <img> tag, it follows the rules */
.story-visual.before-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-banner{
	width: 100%;
  height: auto;
	
}





/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
    .review-story .story-block .after-img {
        height: auto; /* Allow height to adjust naturally on mobile */
    }
}

@media (max-width: 768px) {
    .image-placeholder .main-img {
        height: auto; /* Allow height to adjust naturally on mobile */
    }
}

