:root {
    --bg-color: #fce4ec;
    /* Light pink background */
    --bg-alt: #f8bbd0;
    /* Slightly darker pink for alternate sections */
    --primary-color: #e91e63;
    /* Deep pink for headings */
    --text-color: #333;
    --btn-color: #00ff00;
    /* Neon green CTA */
    --btn-text: #000;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Helpers */
.text-pink {
    color: #e91e63;
}

.text-blue {
    color: #2196f3;
}

.text-red {
    color: #f44336;
}

.text-purple {
    color: #9c27b0;
}

.text-green {
    color: #4caf50;
}

.mt-4 {
    margin-top: 2rem;
}

.bg-alt {
    background-color: var(--bg-alt);
    padding: 50px 0;
}

section {
    padding: 50px 0;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

.fa-star {
    color: #ffc107;
}

.hero-image {
    margin-bottom: 40px;
}

.mockup-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--btn-color);
    color: var(--btn-text);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 8px 15px rgba(0, 255, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 255, 0, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 255, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

/* Galleries */
.gallery h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
}

.gallery-subtitle {
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.grid-2-col,
.grid-3-col,
.grid-4-col {
    display: grid;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.grid-2-col {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3-col {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4-col {
    grid-template-columns: repeat(3, 3fr);
}

.phone-mockup {
    width: 100%;
    border-radius: 20px;
    /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);*/
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px);
}

/* Benefits */
.benefits {
    background-color: var(--bg-color);
}

.benefits-title {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefits-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 600;
}

.badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-bubble {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid #eee;
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.testimonial-bubble .stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-bubble p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-bubble .author {
    font-style: normal;
    font-weight: 700;
    color: var(--primary-color);
}

/* Bonuses */
.bonus-grid {
    margin-top: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, #ff80ab, #f50057);
    color: white;
    padding: 40px 20px 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 30px rgba(245, 0, 87, 0.3);
}

.gift-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #f50057;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bonus-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-img img {
    border-radius: 10px;
    max-width: 100px;
    margin: 10px 0;
    border: 3px solid white;
}

/* Offer & Pricing */
.offer {
    padding: 60px 0;
}

.offer-box {
    background: #ff80ab;
    color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 700;
}

.countdown {
    margin-top: 10px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.digit {
    background: #f50057;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1.8rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.price-section {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.current-price {
    font-size: 4rem;
    font-weight: 900;
    color: #4caf50;
    /* Green price text */
    font-family: var(--font-heading);
    line-height: 1;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.urgency {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Pricing Grid & Cards */
.pricing {
    padding: 60px 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.price-main .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
}

.price-main .amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--text-green, #4caf50);
}

.price-features li.disabled {
    color: #999;
    text-decoration: line-through;
}

.price-features li.disabled i {
    color: #999;
}

.cta-button {
    display: block;
    width: 100%;
    background: var(--btn-color);
    color: var(--btn-text);
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.4);
}

/* Bonus Highlight in Pricing */
.bonus-highlight-card {
    background: #fff9fc;
    border: 1px dashed var(--primary-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
}

.bonus-highlight-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-highlight-card ul {
    list-style: none;
}

.bonus-highlight-card ul li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bonus-highlight-card ul li i {
    color: #ffc107;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-card {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.4s ease forwards;
}

@keyframes slideUpFade {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.popup-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.popup-old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.popup-new-price {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.popup-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.popup-benefits>li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-benefits>li i {
    color: #2ecc71;
}

.aba-highlight {
    background: #fff3ce;
    padding: 2px 8px;
    border-radius: 5px;
    color: #d35400;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.popup-btn:hover {
    transform: translateY(-2px);
}

.popup-btn-accept {
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.popup-btn-decline {
    background: transparent;
    color: #999;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .gallery h2,
    .benefits-title {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 3rem;
    }
}