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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #F55C00 0%, #FF7E1B 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
}

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

.heart-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.main-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.stars {
    font-size: 1.5rem;
    letter-spacing: 5px;
}

/* Hero Section */
.hero {
    padding: 30px 0;
    background: linear-gradient(135deg, #FFF4E0 0%, #FFEBC8 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    background: #F55C00;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #00C46F;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4A4A4A;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #F55C00;
}

.old-price {
    text-align: center;
    margin-bottom: 15px;
}

.old-price .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.old-price .price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #4A4A4A;
    font-weight: 600;
}

.offer-badge {
    background: linear-gradient(45deg, #F55C00, #FF7E1B);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    margin: 20px 0;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(245, 92, 0, 0.5); }
    to { box-shadow: 0 0 20px rgba(245, 92, 0, 0.8); }
}

.new-price {
    text-align: center;
    margin-bottom: 15px;
}

.new-price .label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.new-price .price {
    font-size: 3rem;
    color: #00C46F;
    font-weight: 800;
}

.savings {
    text-align: center;
    color: #00C46F;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-button {
    width: 100%;
    background: linear-gradient(45deg, #F55C00, #FF7E1B);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 92, 0, 0.3);
}

.cta-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.security-info {
    text-align: center;
    font-size: 0.9rem;
    color: #4A4A4A;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-top: 40px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 40px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4A4A4A;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #f8f9fa;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00C46F;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #4A4A4A;
    line-height: 1.6;
}

/* Value Proposition */
.value-prop {
    padding: 40px 0;
    background: linear-gradient(135deg, #F55C00 0%, #FF7E1B 100%);
    color: white;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-left img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.value-right h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.value-right p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.value-point .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-point strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.value-point p {
    opacity: 0.8;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 40px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 25px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author strong {
    display: block;
    color: #00C46F;
    font-weight: 600;
}

.author span {
    color: #4A4A4A;
    font-size: 0.9rem;
}

/* Guarantee */
.guarantee {
    padding: 40px 0;
    background: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.guarantee-badge {
    background: linear-gradient(45deg, #00C46F, #00D67A);
    color: white;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 196, 111, 0.3);
    min-width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-days {
    font-size: 2.5rem;
    margin: 10px 0;
}

.guarantee-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00C46F;
    margin-bottom: 20px;
}

.guarantee-info p {
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 25px;
}

.guarantee-check {
    color: #00C46F;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Final CTA */
.final-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFF4E0 0%, #FFEBC8 100%);
    color: #4A4A4A;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #00C46F;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.urgency {
    background: #F55C00;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

.final-pricing {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.price-comparison .old-price span:first-child,
.price-comparison .new-price span:first-child {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.price-comparison .old-price span:last-child {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
}

.price-comparison .new-price span:last-child {
    font-size: 2.5rem;
    color: #00C46F;
    font-weight: 800;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    font-weight: 600;
    color: #00C46F;
}

.cta-button.final {
    background: linear-gradient(45deg, #F55C00, #FF7E1B);
    font-size: 1.3rem;
    padding: 25px 40px;
}

.included {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #4A4A4A;
    flex-wrap: wrap;
    gap: 10px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Countdown Timer */
.countdown-timer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #F55C00, #FF7E1B);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(245, 92, 0, 0.3);
    z-index: 1000;
    animation: bounce 2s infinite;
}

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

.timer-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.timer-display {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .value-content {
        gap: 30px;
    }
    
    .guarantee-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .hero-content,
    .value-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h3 {
        font-size: 1.6rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits,
    .testimonials,
    .guarantee,
    .final-cta {
        padding: 30px 0;
    }
    
    .value-prop {
        padding: 30px 0;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .guarantee-badge {
        margin: 0 auto;
        min-width: 150px;
        height: 150px;
        padding: 20px;
    }
    
    .badge-days {
        font-size: 2rem;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-box {
        padding: 20px;
    }
    
    .new-price .price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .features,
    .included {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .countdown-timer {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
        display: table;
        font-size: 0.9rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .final-pricing {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 1.2rem;
    }
    
    .header {
        padding: 5px 0;
    }
    
    .hero {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .benefits,
    .testimonials,
    .guarantee,
    .final-cta {
        padding: 20px 0;
    }
    
    .value-prop {
        padding: 20px 0;
    }
    
    .pricing-box {
        padding: 15px;
        margin: 0 5px;
    }
    
    .new-price .price {
        font-size: 2.2rem;
    }
    
    .old-price .price {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .cta-button.final {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
    }
    
    .benefit-card p,
    .testimonial-card blockquote {
        font-size: 0.9rem;
    }
    
    .guarantee-badge {
        min-width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .badge-days {
        font-size: 1.5rem;
    }
    
    .guarantee-info h3 {
        font-size: 1.4rem;
    }
    
    .guarantee-info p {
        font-size: 0.9rem;
    }
    
    .final-pricing {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .countdown-timer {
        padding: 10px 15px;
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
        position: fixed;
        margin: 0;
        display: block;
    }
    
    .timer-display {
        font-size: 1rem;
    }
    
    .value-content {
        gap: 20px;
    }
    
    .value-right h3 {
        font-size: 1.4rem;
    }
    
    .value-right p {
        font-size: 1rem;
    }
    
    .value-point strong {
        font-size: 1rem;
    }
    
    .value-point p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .main-title {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .section-header h3,
    .cta-content h3 {
        font-size: 1.1rem;
    }
    
    .new-price .price {
        font-size: 1.8rem;
    }
    
    .pricing-box,
    .final-pricing {
        padding: 12px;
    }
    
    .cta-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 15px 10px;
    }
    
    .countdown-timer {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .timer-display {
        font-size: 0.9rem;
    }
}