/* ===== Reset & Variables ===== */
:root {
    --bg-main: #FAF5F7;
    --bg-white: #FFFFFF;
    --text-main: #37252B;
    --text-muted: #6b5b60;
    --accent-pink: #CE7E98;
    --accent-dark: #462D53;
    --primary-btn: #22C55E;
    /* Green 500 */
    --primary-btn-hover: #16a34a;
    /* Green 600 */

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography & Utilities ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-main);
}

.bg-white {
    background-color: var(--bg-white);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.uppercase {
    text-transform: uppercase;
}

.inline-block {
    display: inline-block;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ===== Buttons ===== */
.cta-button {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 18px 32px;
    border-radius: 9999px;
    /* Pill shape */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background-color: var(--primary-btn);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--primary-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pulse {
    animation: pulse-green 2s infinite;
}

/* ===== Top Banner ===== */
.top-banner {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-dark));
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.countdown {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 60px 0 80px;
    background: radial-gradient(circle at top, #FFF, var(--bg-main));
}

.hero-title {
    font-size: 3rem;
    color: var(--accent-dark);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    background: #000;
}

.video-container.vertical-video {
    max-width: 400px;
    /* Constrain vertical video width on desktop */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Grid Views (Models & Process) ===== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.model-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0e6ea;
    transition: all 0.3s;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    color: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-dark);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Pain Points & Benefits ===== */
.pain-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.icon-broken {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.benefits-content {
    flex: 1;
    min-width: 300px;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .benefits-image {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        box-shadow: none;
    }
}

.benefits-image img {
    width: 100%;
    display: block;
}

/* ===== Results Carousel ===== */
.carousel-wrapper {
    position: relative;
    max-width: 1020px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
}

.carousel-img {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 6px solid white;
    background-color: white;
}

@media (min-width: 768px) {
    .carousel-img {
        flex: 0 0 calc(33.3333% - 13.3333px);
        max-width: calc(33.3333% - 13.3333px);
        width: calc(33.3333% - 13.3333px);
        height: 450px;
    }
}

.carousel-img.single-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto;
    object-fit: contain;
    border: none;
    box-shadow: none;
    background-color: var(--bg-main);
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #fdfdfd;
    color: var(--text-main);
    transform: scale(1.05);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .testimonials-carousel .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        opacity: 0.85;
    }

    .testimonials-carousel .prev-btn {
        left: 5px;
    }

    .testimonials-carousel .next-btn {
        right: 5px;
    }

    .testimonials-carousel {
        gap: 0;
    }
}

.results-features {
    margin-top: 50px;
}

.feature-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.feature-tags li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-main);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-dark);
    box-shadow: var(--shadow-sm);
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.benefit-list li span {
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.icon-check {
    color: var(--accent-pink);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== Highlight Banner ===== */
.highlight-banner {
    background: var(--accent-pink);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.highlight-box h3 {
    font-size: 2rem;
    font-weight: 900;
}

/* ===== Deliverables ===== */
.deliverables-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid var(--accent-pink);
}

.deliverables-list {
    list-style: none;
}

.deliverables-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.15rem;
    font-weight: 600;
}

.deliverables-list li:last-child {
    border-bottom: none;
}

.icon-pdf {
    color: var(--accent-dark);
    width: 28px;
    height: 28px;
}

/* ===== Comments Section ===== */
.comments-section {
    background-color: var(--bg-main);
}

.comments-container {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.comments-list {
    display: flex;
    flex-direction: column;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.comment-name {
    font-weight: 700;
    color: #1c1e21;
    font-size: 1.05rem;
}

.comment-time {
    color: #65676b;
    font-size: 0.85rem;
}

.comment-text {
    color: #050505;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #65676b;
}

.comment-actions-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-action-btn {
    background: none;
    border: none;
    color: inherit;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.comment-action-btn:hover {
    text-decoration: underline;
}

.comment-action-btn.liked {
    color: var(--accent-pink);
}

.comment-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.comment-input-area {
    padding: 24px;
    background: #fdfdfd;
}

.comment-input-name {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    background: #f7f7f7;
}

.comment-input-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.comment-input-text {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: none;
    outline: none;
    background: #f7f7f7;
}

.btn-submit-comment {
    background: #e2c0c9;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.3s;
    font-size: 0.95rem;
    opacity: 0.6;
}

.btn-submit-comment.active {
    background: var(--accent-pink);
    cursor: pointer;
    opacity: 1;
}

.btn-submit-comment.active:hover {
    opacity: 0.9;
}

/* ===== Pricing ===== */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.pricing-card.premium {
    border: 2px solid var(--accent-pink);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--accent-dark);
    margin-bottom: 10px;
}

.price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.price span {
    font-size: 3rem;
    line-height: 1;
}

.pricing-body ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.icon-price {
    color: var(--accent-pink);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== Guarantee ===== */
.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px dashed #ddd;
}

.icon-guarantee {
    width: 64px;
    height: 64px;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

/* ===== FAQ ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chevron {
    transition: transform 0.3s;
    color: var(--accent-pink);
}

.accordion-header.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

.accordion-content p {
    color: var(--text-muted);
}

/* ===== Modals & Toasts ===== */
.hidden {
    display: none !important;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalfadein 0.3s ease-out forwards;
}

@keyframes modalfadein {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    z-index: 10;
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-dark));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
    position: relative;
}

.badge {
    background: #ffc107;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 15px 0;
    text-align: center;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border-left: 5px solid #10b981;
    /* Green check color */
    animation: toastSlideUp 0.5s ease-out forwards;
    max-width: 350px;
}

.toast-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.toast-icon {
    color: white;
    background-color: #10b981;
    border-radius: 50%;
    padding: 4px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.toast-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.toast-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

@keyframes toastSlideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastSlideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--accent-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-cta-text {
    margin-bottom: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-card.premium {
        transform: scale(1);
        border-width: 2px;
    }

    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }

    .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .section-title.text-left {
        text-align: center;
    }

    .toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        max-width: none;
    }
}