/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
    /* Smooth scrolling for anchor links */
}

:root {
    --primary-red: #FF6B6B;
    /* Red/Orange Highlight Color */
    --primary-dark: #1F2937;
    /* Dark Gray Text */
    --primary-gray: #4B5563;
    /* Subheadline Gray */
    --hover-red: #E63946;
    --background-color: #FFF5F5;
    /* Light Pink Background */
    --top-bar-bg: #FFADAD;
    /* Pink Top Bar */
    --top-bar-text: #FFFFFF;
    --dot-green: #10B981;
    /* Green Status Dot */
    --badge-pink: #F472B6;
    /* Pink Category Badge */
    --testimonial-highlight: #F472B6;
    /* Pink for testimonial title */
}

body {
    background-color: var(--background-color);
    color: var(--primary-dark);
    line-height: 1.6;
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--top-bar-bg);
    color: var(--top-bar-text);
    padding: 10px 0;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar p {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    padding: 40px 20px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.headline .highlight {
    color: var(--primary-red);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 30px;
}

.subheadline .highlight-text {
    color: var(--primary-red);
    font-weight: 700;
}

/* Video Container */
.video-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    width: 65%;
    max-width: 400px;
    /* Removed aspect-ratio: 9/16 to allow Wistia player to define dimensions */
    background-color: transparent;
    /* Changed from black as embed has own bg */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

/* Placeholder for Video Frame until user provides video/image */
.video-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eee 0%, #ccc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Play Button Mockup - Temporary */
.play-button {
    width: 60px;
    height: 40px;
    background-color: #1e40af;
    /* Blue from screenshot */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.triangle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid white;
    margin-left: 4px;
}

/* Watching Now Indicator */
.watching-now {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blinking-dot {
    color: #FF4444;
    /* Red Dot */
    animation: blink 1.5s infinite;
    font-size: 1.2rem;
    line-height: 1;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* 
   Showcase & Testimonials (Continuous Marquee Animation)
*/
.showcase-section,
.testimonials-section {
    padding: 40px 0;
    overflow: hidden;
    /* Hide horizontal overflow */
    width: 100%;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.section-title .highlight {
    color: var(--primary-red);
}

.section-title .highlight-pink {
    color: var(--testimonial-highlight);
}

.carousel-wrapper {
    width: 100%;
    padding: 20px 0 40px;
    /* Allow scrolling horizontally and snap - REMOVED for Marquee */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    /* Continuous Marquee Animation */
    animation: scroll-left 20s linear infinite;
    /* Ensure width is calculated based on content */
    width: max-content;
}

/* Pause on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
    white-space: normal;
    /* Allow text inside to wrap */

    flex: 0 0 auto;
    width: 80vw;
    max-width: 300px;
    /* Default width for slides */
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Portrait image ratio */
    background-color: #fff;
    border: 2px dashed #ddd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease;
    overflow: hidden;
    /* Ensure image stays within border radius */
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-slide:hover .image-placeholder {
    transform: scale(1.02);
}

/* Category Badge above the image */
.category-badge {
    background-color: var(--badge-pink);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: -15px;
    /* Overlap slightly with image */
    z-index: 2;
    /* Sit on top of image border */
    text-transform: capitalize;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonial Specific Image Styling */
.testimonial-slide {
    width: 70vw;
    max-width: 260px;
    /* Make them slightly narrower like phone screens */
}

.image-placeholder.vertical-placeholder {
    aspect-ratio: 9 / 18;
    /* Taller Aspect Ratio for Screenshots */
    border-radius: 20px;
    /* More rounded like phones */
    border: 2px solid #eee;
    /* Solid border instead of dashed for screenshots preview look */
}

/* Benefits Bar */
.benefits-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.green-dot {
    width: 10px;
    height: 10px;
    background-color: var(--dot-green);
    border-radius: 50%;
    display: inline-block;
}

/* 
   Categories Section (Grid) 
*/
.categories-section {
    padding: 40px 0;
    background-color: white;
    /* Breaking up the background */
    margin-bottom: 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 columns */
    gap: 15px;
    padding: 10px;
}

@media (min-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 columns */
        gap: 20px;
    }
}

.category-card {
    background-color: #FFF0F5;
    /* Very Light Pink Wrapper */
    padding: 20px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: default;
    transition: transform 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card span {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    width: 32px;
    height: 32px;
}

/* Icon Colors */
.pink-icon .category-icon {
    color: #EC4899;
}

/* Pink-600 */
.orange-icon .category-icon {
    color: #F97316;
}

/* Orange-500 */
.purple-icon .category-icon {
    color: #A855F7;
}

/* Purple-500 */

.more-text {
    margin-top: 30px;
    color: #EC4899;
    font-weight: 700;
    font-size: 1rem;
}

/* 
   Why Choose Section (Features Grid)
*/
.why-choose-section {
    padding: 40px 0;
    background-color: #fff;
    /* Could be same as body or white */
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 20px;
    padding: 10px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Desktop: 2 columns */
    }
}

.feature-card {
    background-color: #F8F1F6;
    /* Light lavender-pink background from image */
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    /* Vertical center */
    gap: 20px;
    text-align: left;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    /* Prevent shrinking */
    background-color: #FF6B6B;
    /* Red/Orange circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    /* Slightly softer gray */
    line-height: 1.4;
    margin: 0;
}


/* 
   Pricing Section (New Offer Section) 
*/
.pricing-section {
    padding: 60px 0;
    font-family: 'Nunito', sans-serif;
    background-color: #FFF5F5;
    /* Matches body bg */
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
    /* Align text left as per image */
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Premium Card Specifics */
.premium-card {
    border: 2px solid #F97316;
    /* Orange Border */
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F97316;
    /* Orange */
    background: linear-gradient(90deg, #F97316 0%, #FB923C 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1rem;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-value {
    display: flex;
    align-items: baseline;
    color: #1F2937;
    margin-bottom: 5px;
}

.price-value .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 5px;
}

.price-value .amount {
    font-size: 3.5rem;
    /* Big price */
    font-weight: 900;
    line-height: 1;
}

.payment-type {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 15px;
}

.savings {
    color: #10B981;
    /* Green */
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.social-proof-text {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-top: 5px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    flex-grow: 1;
    /* Pushes button down */
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.4;
}

.check-icon {
    color: #10B981;
    /* Green Check */
    font-weight: bold;
    min-width: 20px;
    /* Align checkmarks */
}

.benefits-list li .bold {
    font-weight: 700;
    color: #1F2937;
}

/* Buttons */
.plan-button {
    background: #F472B6;
    /* Fallback Pink */
    background: linear-gradient(90deg, #EC4899 0%, #F97316 100%);
    /* Pink to Orange Gradient */
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* 
   What's Included Section 
*/
.whats-included-section {
    padding: 60px 0;
    background-color: #FDF2F8;
    /* Light Pink/Purple mix */
}

.included-card {
    background-color: white;
    max-width: 800px;
    /* Wider card */
    margin: 0 auto;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.included-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.5;
}

.icon-check-wrapper {
    color: #10B981;
    /* Green */
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-check-wrapper svg {
    width: 20px;
    height: 20px;
}

/* 
   Guarantee Section 
*/
.guarantee-section {
    padding: 80px 0;
    background-color: #FFF5F5;
    /* Matches hero bg */
}

.guarantee-icon-large {
    width: 80px;
    height: 80px;
    background-color: #10B981;
    /* Green Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.guarantee-icon-large svg {
    width: 48px;
    height: 48px;
}

.guarantee-text {
    font-size: 1.1rem;
    color: #4B5563;
    max-width: 700px;
    margin: 20px auto 40px;
    line-height: 1.6;
}

.guarantee-text .green-text {
    color: #10B981;
}

.risk-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Slight shadow */
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 700;
    color: #1F2937;
    font-size: 1rem;
}

.guarantee-btn {
    background: #E63946;
    /* Strong Red/Pink CTA */
    background: linear-gradient(90deg, #F472B6 0%, #F97316 100%);
    /* Consistent Gradient */
    font-size: 1.1rem;
    border-radius: 30px;
    padding: 15px 40px;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.guarantee-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

/* Footer */
footer {
    padding: 20px;
    background-color: #fce7f3;
    /* very light pink */
    color: #888;
    font-size: 0.9rem;
    margin-top: 0;
}


/* Social Proof Notifications */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-toast {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    animation: slideInLeft 0.5s ease-out forwards;
    border-left: 4px solid #10B981;
    position: relative;
    overflow: hidden;
}

.notification-toast.hiding {
    animation: slideOutLeft 0.5s ease-in forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

.notif-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #D1FAE5;
    /* Light Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    flex-shrink: 0;
}

.notif-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.notif-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1F2937;
}

.notif-text {
    font-size: 0.8rem;
    color: #6B7280;
}

.notif-time {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 2px;
}

/* Close Button (X) */
.notif-close {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 0.8rem;
    color: #9CA3AF;
    cursor: pointer;
    background: none;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
    }

    .headline {
        font-size: 2rem;
    }

    .video-wrapper {
        width: 100%;
        max-width: 320px;
    }

    .benefits-bar {
        font-size: 0.8rem;
        gap: 10px 15px;
        width: 90%;
        padding: 15px;
    }

    /* Notification adjustment for mobile */
    .notification-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 90%;
        align-items: center;
    }

    .notification-toast {
        width: 100%;
        max-width: 100%;
    }
}