/* 
   Ballet Academy - Premium Landing Page Design System
   Color Palette: Ivory, Soft Pink, Deep Rose, Gold
*/



:root {
    --primary: #fce4ec;
    --accent: #ff748c;
    /* Vibrant Pink from buttons */
    --accent-hover: #ff5c7a;
    --purple: #9d52ff;
    --green: #00b894;
    /* Green for bonus bar */
    --gold-bg: #fffbe6;
    /* Light gold for Completo badge */
    --gold-text: #b8860b;
    --text: #000000;
    --text-light: #000000;
    --bg-white: #ffffff;
    --bg-alt: #fcfcfc;
    --border-pink: #ffe0e4;
    --border-radius: 35px;
    --shadow-icon: 0 10px 20px rgba(255, 116, 140, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

h1,
h2,
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    /* Standardizing all titles to match headline */
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    /* Matching headline bold weight */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Notifications --- */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.notification {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    animation: slideInRight 0.5s ease-out forwards, fadeOut 0.5s ease-in 4.5s forwards;
    width: 250px;
    padding: 12px 15px;
}

.notification-avatar {
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(255, 116, 140, 0.2);
}

.notification-content p {
    font-size: 0.85rem !important;
    margin: 0;
    line-height: 1.3;
}

.notification-content strong {
    color: var(--purple);
}

.notification-time {
    font-size: 0.7rem !important;
    color: var(--text-light);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* --- Top Bar --- */
.top-bar {
    background: linear-gradient(90deg, #ff9eb0, #e0a3ff);
    /* Screenshot gradient */
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    background: #fff;
}

.hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.hero h1 span.highlight {
    color: var(--purple);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
}

/* --- VSL Section --- */
.vsl-container {
    max-width: 360px;
    aspect-ratio: 9/16;
    background: #000;
    margin: 0 auto 30px;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: none;
}

.vsl-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    z-index: 2;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s;
    box-shadow: 0 0 20px var(--accent);
}

.vsl-overlay:hover .play-button {
    transform: scale(1.1);
}

/* --- Buttons --- */
.cta-main {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.4);
    border: none;
    cursor: pointer;
}

.cta-main:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
    box-shadow: 0 15px 30px rgba(216, 27, 96, 0.5);
}

/* --- Sections --- */
section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #9d52ff, #00d2ff);
    /* Screenshot gradient underline */
    margin: 12px auto 0;
    border-radius: 10px;
}

.receive-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card-premium {
    background: white;
    padding: 25px 20px;
    border-radius: 35px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #ff4d6d;
    /* Strong Pink and Thicker border */
    position: relative;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 116, 140, 0.08);
}

.card-icon-container {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(255, 116, 140, 0.2);
    border: 1px solid var(--border-pink);
}

.card-icon {
    font-size: 2rem;
    display: block;
}

/* --- Bonuses --- */
.bonus-section {
    background: #fcfcfc;
    padding: 80px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-card {
    background: white;
    border-radius: 35px;
    padding: 20px;
    text-align: center;
    border: 3px solid #ff4d6d;
    /* Strong Pink and Thicker border */
    transition: 0.3s;
}

.bonus-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.bonus-price-tag {
    color: #ff4d4d;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
}

.bonus-bar {
    background: #10ac84;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(16, 172, 132, 0.2);
}

.bonus-text-outline {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.bonus-bar span.strikethrough {
    text-decoration: line-through;
    color: #cc0000;
    /* Vivid dark red */
    margin: 0 10px;
    font-size: 1.5rem;
    text-shadow: none;
}

.bonus-free-today {
    color: var(--purple);
    font-size: 2rem;
    font-weight: 900;
    margin-top: 10px;
    background: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    text-shadow: none;
    /* easier to read white on purple or purple on white */
}

/* --- Timer --- */
.timer-container {
    max-width: 800px;
    margin: 20px auto;
}

.timer-box {
    background: var(--accent);
    color: white;
    padding: 25px 15px;
    border-radius: 30px;
    text-align: center;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(255, 116, 140, 0.3);
}

.timer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    background: white;
    color: #ff5e3a;
    padding: 15px;
    border-radius: 25px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-val {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.timer-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 600;
}

p,
.pricing-list li,
.price-desc,
.price-sub,
details p,
summary,
.stat-item small,
.testimonial-card p,
.bonus-card p,
footer p {
    font-size: 1.15rem !important;
    /* Standardized common text size */
}

/* --- Pricing --- */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    padding: 30px 25px;
    border-radius: 40px;
    width: 400px;
    border: 2px solid #e0e0e0;
    /* Gray border */
    position: relative;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.pricing-card.popular {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 3px solid #ff4d6d;
    /* Strong Pink */
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #b67dff;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin: 5px 0 0;
}

.price-sub {
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 10px;
}

.price-desc {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 15px;
}

.completo-special {
    background: #f3e5f5;
    /* Light purple bg */
    color: var(--purple);
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #000;
}

.pricing-list li strong {
    color: #b388ff;
}

.pricing-list li.highlight-item {
    font-weight: 700;
    color: var(--purple);
}

.strikethrough-price {
    text-decoration: line-through;
    color: #cc0000;
    font-weight: 700;
    margin-left: 0;
    font-size: 1.3rem;
    /* Increase size */
}

.price-total {
    font-size: 1rem;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.price-today {
    font-size: 0.95rem;
    color: var(--purple);
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.best-value-badge {
    background: #FFD700;
    /* Vivid Yellow */
    color: #000;
    padding: 15px 20px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid #e6c200;
}

.best-value-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-top: 5px;
    color: #000;
}

/* Button Outline */
.cta-main {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    color: white !important;
    background: var(--accent) !important;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card .cta-main {
    margin-top: 25px;
    display: block;
    width: 100%;
}

.cta-main:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-3px);
}

@keyframes pulse-zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.zoom-effect {
    animation: pulse-zoom 2s infinite ease-in-out;
}

.premium-features-box {
    background-color: #f8f0fc;
    border: 2px dashed var(--purple);
    border-radius: 15px;
    padding: 25px 15px 15px;
    margin: 25px 0 15px;
    position: relative;
    text-align: left;
}

.plus-badge {
    background-color: var(--purple);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
    border: 3px solid #fff;
}

.premium-list {
    margin-bottom: 0;
}

.premium-list li {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.card-icon-svg {
    width: 35px;
    height: 35px;
    color: var(--accent);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border: 3px solid #ff4d6d;
    /* Matched Complete Package Pink */
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: #000;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info small {
    color: #777;
    font-size: 0.85rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

/* --- Author --- */
.author-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--primary);
    padding: 60px;
    border-radius: 40px;
}

.author-label {
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.author-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid white;
}

.author-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

/* --- Guarantee --- */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-img {
    width: 150px;
    margin-bottom: 20px;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    cursor: pointer;
}

summary {
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    /* Explicit left alignment */
}

summary::after {
    content: '▼';
    /* Down Arrow */
    color: var(--accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}



/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    display: none;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 25px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Footer --- */
footer {
    padding: 60px 0;
    text-align: center;
    background: var(--text);
    color: white;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    body {
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .hero h1,
    .section-title {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
        /* Smaller to fit one line on mobile */
    }

    .hero p {
        font-size: 1.2rem;
    }

    .receive-grid,
    .benefits-grid,
    .bonus-grid,
    .pricing-grid,
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-card,
    .bonus-card,
    .card-premium,
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .author-box {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 10px;
    }

    .author-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .author-img {
        width: 180px;
        height: 180px;
        margin-bottom: 0px;
    }

    .author-box h2 {
        font-size: 1.8rem !important;
        white-space: nowrap;
    }

    .timer-display {
        flex-wrap: wrap;
        gap: 10px;
    }

    .timer-unit {
        min-width: 80px;
        padding: 15px;
    }

    .notification {
        width: 280px;
        right: 10px;
        left: 10px;
        margin: 0 auto;
    }
}

/* --- Added for performance (moved from JS) --- */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}