:root {
    --primary: #D48C92;
    /* Soft Rose */
    --primary-light: #F3E1E3;
    --secondary: #E5C365;
    /* Soft Gold */
    --bg-color: #FDFBF7;
    /* Cream */
    --text-color: #4A403A;
    /* Dark Warm Grey */
    --white: #FFFFFF;
    --accent-red: #E07A5F;
    --gray-light: #F5F5F5;
    --shadow: 0 10px 30px rgba(212, 140, 146, 0.15);
    --gradient-bg: linear-gradient(135deg, #FDFBF7 0%, #FFF5F5 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-color);
    /* Texture + Mouse Gradient */
    background-image:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 140, 146, 0.15) 0%, transparent 50%),
        radial-gradient(#D48C92 0.5px, transparent 0.5px),
        radial-gradient(#D48C92 0.5px, var(--bg-color) 0.5px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 10px 10px;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Timer */
.sticky-timer {
    background-color: var(--accent-red);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(253, 251, 247, 0.8) 100%);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.video-container {
    margin: 2rem auto;
    max-width: 315px;
    /* Vertical video width */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}

.hero-text {
    font-size: 1.3rem;
    margin: 2rem 0;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #D48C92, #E5C365);
    color: white;
    padding: 15px 30px;
    /* Reduced side padding */
    border-radius: 50px;
    font-size: 1.1rem;
    /* Slightly smaller font */
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 140, 146, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: normal;
    /* Allow wrapping if needed on very small screens */
    max-width: 90%;
    /* Prevent overflowing screen */
    width: auto;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 140, 146, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 140, 146, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 140, 146, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 140, 146, 0);
    }
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title span {
    color: var(--primary);
}

/* What You Will Receive */
.what-you-receive {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 140, 146, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.15));
}

.feature-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.feature-card ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

/* Benefits */
.benefits {
    background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 100%);
}

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

/* Bonuses */
.bonuses {
    background: var(--bg-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}

.bonus-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
}

.bonus-content {
    padding: 20px;
}

.bonus-card .price {
    color: #888;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.bonus-card .price span {
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
}

.lock-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.total-bonus {
    text-align: center;
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px dashed var(--primary);
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #D48C92 0%, #E5C365 100%);
    color: var(--white);
    text-align: center;
}

.offer .section-title {
    color: var(--white);
}

.offer-box {
    background: var(--white);
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.checklist {
    text-align: left;
    margin: 20px 0;
}

.checklist li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.checklist li i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.2rem;
}

.price-area {
    margin: 30px 0;
    padding: 20px;
    background: #FFF9F9;
    border-radius: 15px;
    border: 1px solid #FFE5E5;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 1.5rem;
    margin: 10px 0;
}

.new-price span {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.savings {
    background: #27ae60;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.secure-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.small-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--bg-color);
}

.rating {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #f1c40f;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-light);
    font-family: serif;
    line-height: 1;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* Guarantee */
.guarantee {
    background: var(--white);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    background: #FDFBF7;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--secondary);
}

.guarantee-content img {
    width: 150px;
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

/* About */
.about {
    background: var(--bg-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content img {
    width: 40%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text .highlight {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-content img {
        width: 100%;
    }
}

/* Bottom CTA */
.bottom-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-box {
    background: var(--white);
    color: var(--text-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.price-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.urgency {
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 20px;
}

/* FAQ */
.faq {
    background: var(--bg-color);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding: 20px 0;
    color: #666;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Adjust if needed */
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #333;
    color: #aaa;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 40px 0;
    }

    .section {
        padding: 50px 0;
    }
}