/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 0;
}

.hero-header {
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    padding: 30px 0 40px;
    text-align: center;
}

.cta-button {
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    width: 90%;
    max-width: 320px;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Problem Section */
.problems {
    padding: 0;
    background: #fff;
    width: 100%;
}

.problems-image {
    width: 100%;
    display: block;
    margin: 0;
}

/* Solution Section */
.solution {
    padding: 0;
    background: #fff;
    width: 100%;
}

.solution-image {
    width: 100%;
    display: block;
    margin: 0;
}

/* Before After Section */
.before-after {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.ba-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ba-image {
    width: 100%;
    margin: 0 auto 24px;
}

.ba-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.ba-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

/* Testimonial Section */
.testimonials {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.4;
}

.testi-image {
    width: 100%;
    margin: 0 auto;
}

/* Social Proof Section */
.social-proof {
    padding: 40px 0;
    background: #fff;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.proof-image {
    width: 100%;
    border-radius: 12px;
}

/* BPOM Section */
.bpom {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.bpom h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.4;
}

.bpom-image {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.4;
}

.pricing-image {
    width: 100%;
    margin: 0 auto 32px;
}

.price-box {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 32px 20px;
    border-radius: 14px;
    margin: 32px auto;
}

.price-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}

.price-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.price-box h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    color: #1a1a1a;
}

/* Harga yang dicoret - dengan animasi shake */
.price-box h1 del {
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: #666;
    opacity: 0.7;
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }
    92% {
        transform: rotate(-2deg);
    }
    94% {
        transform: rotate(2deg);
    }
    96% {
        transform: rotate(-2deg);
    }
    98% {
        transform: rotate(2deg);
    }
}

.price-box h1 del::before {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
    border-radius: 2px;
    animation: slash-pulse 2s infinite;
}

@keyframes slash-pulse {
    0%, 100% {
        opacity: 1;
        height: 5px;
    }
    50% {
        opacity: 0.8;
        height: 6px;
    }
}

.price-box h1 del::after {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
    border-radius: 2px;
    opacity: 0.7;
}

/* Harga promo - dengan animasi bounce dan glow */
.price-box h1:last-of-type {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #00a040, #00c853, #00d65a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 24px 0;
    animation: price-bounce 2s infinite, price-glow 2s infinite;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
    position: relative;
    display: inline-block;
}

@keyframes price-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.05);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes price-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 200, 83, 0.8));
    }
}

/* Efek sparkle untuk harga promo */
.price-box h1:last-of-type::before {
    content: '✨';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkle-left 1.5s infinite;
    font-size: 24px;
}

.price-box h1:last-of-type::after {
    content: '✨';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkle-right 1.5s infinite;
    font-size: 24px;
}

@keyframes sparkle-left {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2) rotate(15deg);
    }
}

@keyframes sparkle-right {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2) rotate(-15deg);
    }
}

.price-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.urgency-box {
    margin: 24px auto;
}

.urgency-box img {
    width: 100%;
    margin: 0 auto;
}

/* Order Section */
.order {
    padding: 40px 0;
    background: linear-gradient(180deg, #E8E8E8 0%, #F5F5F5 100%);
    text-align: center;
}

.order-title {
    width: 100%;
    margin: 0 auto 32px;
}

.cta-button-large {
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    color: #fff;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 90%;
    max-width: 360px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    animation: pulse-glow 2s infinite;
}

/* Animasi pulse glow */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 102, 255, 0.6);
        transform: scale(1.02);
    }
}

/* Shimmer effect */
.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Ripple effect on hover */
.cta-button-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #0052cc 0%, #0088ff 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.6);
}

.cta-button-large:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button-large:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.5);
}

/* Animated Arrow Container */
.arrow-container {
    margin: 20px 0;
    text-align: center;
}

.arrow-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -10px;
}

.arrow-down span {
    font-size: 40px;
    animation: bounce-arrow 1.5s ease-in-out infinite;
    opacity: 0;
}

.arrow-down span:nth-child(1) {
    animation-delay: 0s;
}

.arrow-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce-arrow {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 24px 0;
    text-align: center;
}

footer p {
    font-size: 12px;
    color: #ccc;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Tablet and Desktop (optional, mobile first) */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 24px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 18px 40px;
    }
    
    .problem-grid {
        gap: 30px;
    }
    
    .problem-item h3 {
        font-size: 15px;
    }
    
    .testimonials h2,
    .bpom h2,
    .pricing h2 {
        font-size: 22px;
    }
    
    .price-box {
        padding: 40px 32px;
    }
    
    .cta-button-large {
        font-size: 16px;
        padding: 20px 50px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding: 0 32px;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
