/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

/* HEADLINE SECTION */
.headline-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    text-align: center;
}

.headline {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 16px;
}

.subheadline-top {
    font-size: 1.15rem;
    font-weight: 400;
    color: #111111;
    line-height: 1.4;
}

.highlight-green {
    background-color: #39e639;
    padding: 1px 4px;
    text-decoration: none;
}

/* VIDEO SECTION */
.video-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    gap: 10px;
}

.play-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.video-placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px 40px;
}

.testimonials-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonials-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.testimonials-images img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* FOOTER */
.footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    margin-top: 40px;
}

/* PURCHASE NOTIFICATIONS */
.purchase-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 340px;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-left: 4px solid #39e639;
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notif-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notif-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #111111;
    line-height: 1.4;
}

.notif-text strong {
    font-weight: 700;
}

.notif-product {
    font-weight: 600;
    color: #333333;
}

.notif-location {
    font-size: 0.75rem;
    color: #888888;
}

/* CTA BUTTON */
.cta-section {
    display: flex;
    justify-content: center;
    padding: 10px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(180deg, #ff8c00, #e06b00);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.45);
    animation: pulse 1.8s infinite ease-in-out;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 600px;
}

.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 28px rgba(255, 140, 0, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.45);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 6px 30px rgba(255, 140, 0, 0.65);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.45);
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .headline {
        font-size: 1.25rem;
    }

    .subheadline-top {
        font-size: 1rem;
    }

    .testimonials-title {
        font-size: 1.1rem;
    }

    .headline-section {
        padding: 28px 16px 16px;
    }
}
