:root {
    --primary: #6366f1;
    /* Soft Indigo */
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    /* Pink for accents/CTA */
    --secondary-hover: #db2777;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-radius: 16px;
    --container-width: 1000px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px;
    /* Space for sticky footer on mobile */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

.btn-text {
    color: var(--text-muted);
    margin-left: 20px;
}

.btn-text:hover {
    color: var(--primary);
    text-decoration: underline;
}

.btn-text-small {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 15px;
    display: inline-block;
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    /* Soft gradient + The generated collage pattern */
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 241, 242, 0.95) 100%),
        url('hero-pattern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.badge {
    position: relative;
    /* Ensure z-index is above background */
    z-index: 10;
    display: inline-block;
    background-color: #dbeafe;
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    position: relative;
    z-index: 10;
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-sub {
    position: relative;
    z-index: 10;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    position: relative;
    z-index: 10;
}

.hero-trust {
    position: relative;
    z-index: 10;
    font-size: 0.85rem;
    margin-top: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-bullets {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-bullets span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.hero-bullets i {
    color: var(--secondary);
}

.hero-decoration .blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background-color: #fca5a5;
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background-color: #93c5fd;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.grid-cards {
    display: grid;
    /* Increased min-width to force 2 columns on standard screens (2x2 layout) instead of 3x1 */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    justify-content: center;
}

.card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    /* Ensure content is centered vertically too */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    background-color: #e0e7ff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.pain-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Solution */
.solution {
    padding: 80px 0;
    background-color: white;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-text {
    flex: 1;
}

.section-tag {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    /* Checkmark color */
}

.solution-includes {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.solution-includes ul {
    list-style: none;
}

.solution-includes li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.solution-includes li i {
    color: var(--secondary);
    margin-top: 4px;
}

.price-anchor {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 20px;
    display: block;
}

.solution-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ebook-cover {
    max-width: 100%;
    width: 320px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    transition: transform 0.3s ease;
}

.ebook-cover:hover {
    transform: scale(1.02) rotate(1deg);
}

/* What's Inside */
.whats-inside {
    padding: 80px 0;
    background-color: #f0f9ff;
}

.whats-inside h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    /* Optimized for 6 items: prefer 3 columns (3x2) */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    text-align: center;
}

.feature-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
    display: block;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-main);
}

/* Pricing / Offers */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Featured one slightly wider */
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
    align-items: center;
    /* Center vertically */
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    /* Make it pop nicely */
    transform: scale(1.02);
    background: radial-gradient(circle at top right, #eef2ff 0%, #fff 40%);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text-main);
    line-height: 1;
}

.currency {
    font-size: 1.25rem;
    margin-top: 6px;
    margin-right: 4px;
}

.value {
    font-size: 3.5rem;
    font-weight: 700;
}

.payment-info {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--text-muted);
}

.pricing-card .divider {
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
    margin: 30px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--primary);
    /* Green or Primary */
}

.plan-features li.disabled {
    color: #cbd5e1;
}

.plan-features li.disabled i {
    color: #cbd5e1;
}

.bonuses {
    background-color: #fff1f2;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px dashed var(--secondary);
}

.bonuses h4 {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-align: center;
}

.bonus-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
    font-size: 0.95rem;
    text-align: left;
}

.bonus-img-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-card .btn {
    width: 100%;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.security-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}


/* Target Audience */
.target-audience {
    text-align: center;
    padding: 60px 0;
    background: white;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    background-color: #ecfeff;
    color: #0d9488;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.not-for {
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Author */
.author {
    padding: 80px 0;
}

.reverse {
    flex-direction: row-reverse;
}

.author-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 6px solid #e2e8f0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fafbfd;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.testimonial-content h4 {
    color: var(--text-main);
    margin-bottom: 4px;
}

.testimonial-content span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.accordion-header {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    padding-bottom: 24px;
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    background: var(--text-main);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2,
.final-cta p {
    color: white;
}

.final-cta p {
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.copy {
    font-size: 0.85rem;
    margin-top: 40px;
    opacity: 0.5;
}

/* Responsive */
/* Bonus Resources Section */
.bonus-resources {
    padding: 80px 0;
    background-color: white;
}

.badge-soft {
    display: inline-block;
    background-color: #fff1f2;
    color: #e11d48;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.bonus-grid {
    display: grid;
    /* Force 2 columns for perfect 2x2 symmetry with 4 items */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #fed7aa;
    /* Light Orange Border */
    text-align: left;
    transition: transform 0.3s ease;
    background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
    /* Orange tint background */
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bonus-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
}

.bonus-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Individual Offers and Detailed Content */
.detailed-content {
    padding: 60px 0;
    background-color: #f8fafc;
}

.detailed-content .accordion-header {
    background-color: white;
    margin-bottom: 2px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.detailed-content .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.detailed-content .accordion-content {
    background-color: white;
    border-radius: 0 0 8px 8px;
}

.individual-offers {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #f1f5f9;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f1f5f9;
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.product-info p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.mini-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.product-card .btn {
    width: 100%;
}

.detail-list {
    list-style: none;
    padding: 20px 0;
}

.detail-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: var(--text-main);
}

.detail-list li strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 4px;
}

/* Update Check List for Summary */
.summary-content {
    list-style: none;
    margin-top: 10px;
    padding-left: 0;
}

.summary-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.summary-content li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.optional-notice {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    /* Desktop hidden */
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-guarantee {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .btn-text {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .check-list {
        display: inline-block;
        text-align: left;
        margin: 20px auto 0;
    }

    .grid-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .sticky-footer {
        display: block;
    }
}


/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup-overlay:not(.hidden) .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.wait-badge {
    background: #fff1f2;
    color: #e11d48;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.popup-header h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup-body p {
    margin-bottom: 16px;
}

.special-offer-box {
    border: 2px dashed var(--primary);
    background: #eef2ff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.scarcity-text {
    font-weight: 700;
    color: #e11d48;
    margin-bottom: 10px;
}

.special-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-sub {
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Social Proof Notification */
.social-proof-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--secondary);
    max-width: 300px;
}

.social-proof-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notif-icon {
    width: 32px;
    height: 32px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
}

.notif-text {
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: left;
}

.notif-text strong {
    display: block;
    color: var(--text-main);
}

.notif-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Visual Showcase Section */
.visual-showcase {
    padding: 80px 0;
    background-color: #f8fafc;
    overflow: hidden;
    /* Hide overflow if animations go out? */
}

.showcase-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

@media (min-width: 900px) {
    .showcase-layout {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }
}

.mockup-wrapper {
    position: relative;
    max-width: 380px;
    width: 100%;
    /* Subtle 3D effect foundation */
    perspective: 1500px;
    z-index: 2;
}

.main-book-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Basic 3D rotation to look like a hero shot */
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-wrapper:hover .main-book-img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Sidebar with stacked previews */
.previews-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 350px;
}

.preview-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    border: 4px solid white;
    height: 120px;
    /* Fixed height for consistent stripes */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Focus on header */
    display: block;
    opacity: 0.95;
    transition: opacity 0.3s;
}

.preview-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.preview-card:hover img {
    opacity: 1;
}

/* Staggered effect for desktop */
@media (min-width: 900px) {
    .preview-card.p-1 {
        margin-left: 0;
    }

    .preview-card.p-2 {
        margin-left: 20px;
    }

    .preview-card.p-3 {
        margin-left: 40px;
    }

    /* On hover of wrapper, maybe align them? */
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .mockup-wrapper {
        max-width: 280px;
    }

    .previews-sidebar {
        max-width: 100%;
        gap: 16px;
    }

    .preview-card {
        height: 100px;
        /* Smaller on mobile */
    }
}

.mockup-shadow {
    position: absolute;
    bottom: -30px;
    left: 5%;
    width: 90%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    transform: rotateX(80deg);
}

/* Free Sample Capture Section */
.free-sample {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff1f2 0%, #fff 100%);
    border-top: 1px solid #ffe4e6;
    border-bottom: 1px solid #ffe4e6;
}

.reverse-grid {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.sample-content {
    flex: 1;
    max-width: 500px;
}

.sample-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    margin-top: 8px;
    color: var(--text-main);
}

.capture-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    border: 1px solid #f1f5f9;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.spam-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.sample-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 400px;
}

.file-preview {
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1));
    transform: rotate(-3deg);
    transition: transform 0.3s;
    background: white;
    padding: 8px;
    border: 1px solid #e2e8f0;
}

.file-preview:hover {
    transform: rotate(0deg) scale(1.02);
}

.sample-img {
    border-radius: 8px;
    width: 100%;
    display: block;
}

.file-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ef4444;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.file-icon i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

/* Social Proof Section (Simulated Social Media) */
.social-proof {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.social-masonry {
    column-count: 3;
    column-gap: 24px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .social-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .social-masonry {
        column-count: 1;
    }
}

.social-card {
    break-inside: avoid;
    margin-bottom: 24px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Instagram Comment Card */
.insta-comment-card {
    padding: 16px;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.insta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #db2777;
    padding: 2px;
}

.insta-meta {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.insta-username {
    font-weight: 600;
    color: #262626;
}

.insta-action {
    color: #8e8e8e;
    font-size: 0.85rem;
}

.insta-body p {
    color: #262626;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: normal;
}

.insta-footer {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: #8e8e8e;
    font-weight: 500;
}

/* WhatsApp Card */
.whatsapp-card {
    background-color: #efeae2;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    display: flex;
    flex-direction: column;
}

.wa-header {
    background-color: #008069;
    color: white;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-header .fa-chevron-left {
    font-size: 1.1rem;
    margin-right: 5px;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.wa-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-body {
    padding: 20px 16px;
    background-color: rgba(229, 221, 213, 0.95);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-msg {
    max-width: 85%;
    padding: 8px 10px;
    border-radius: 8px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wa-msg p {
    color: #111b21;
    margin-bottom: 4px;
    font-size: 0.95rem;
    font-style: normal;
}

.wa-msg.received {
    align-self: flex-start;
    background-color: white;
    border-top-left-radius: 0;
}

.wa-msg.sent {
    align-self: flex-end;
    background-color: #d9fdd3;
    border-top-right-radius: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: #667781;
    margin-top: 2px;
}

.wa-sender {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e542a3;
    display: block;
    margin-bottom: 4px;
}

.wa-read {
    color: #53bdeb;
    font-size: 0.7rem;
    margin-left: 4px;
    float: right;
}

/* Story Card */
.story-card {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    padding: 24px;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card.bg-orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.story-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

.story-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.story-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ec4899;
}

.story-user span {
    font-weight: 600;
    font-size: 0.9rem;
}

.story-text {
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #333;
    font-style: normal !important;
}

.story-sticker {
    background: #a855f7;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.story-sticker.orange {
    background: #f97316;
    transform: rotate(2deg);
}

.social-cta-container {
    text-align: center;
    margin-top: 50px;
}

.social-card p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}