:root {
    --primary: #FF9F1C;
    --primary-hover: #F28C00;
    --secondary: #2EC4B6;
    --accent: #FF5964;
    --background: #FFFDF9;
    --surface: #FFFFFF;
    --text-dark: #2B2D42;
    --text-muted: #6C757D;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 12px 32px rgba(43, 45, 66, 0.06);
    --shadow-hover: 0 20px 40px rgba(43, 45, 66, 0.12);
    --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);
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.6); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(255, 159, 28, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #FFB703);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 159, 28, 0.6);
    background: linear-gradient(135deg, #F28C00, var(--primary));
}

.large-cta {
    font-size: 1.5rem;
    padding: 22px 50px;
    width: 100%;
    max-width: 450px;
}

/* Typography Highlights */
.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 159, 28, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}

.highlight-alt {
    color: var(--secondary);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #E0FBFC 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 159, 28, 0.15);
    color: var(--primary-hover);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.secure-checkout {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    animation: float 6s ease-in-out infinite;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background-color: var(--surface);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.ideal-for {
    background-color: rgba(46, 196, 182, 0.08);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ideal-for .emoji {
    font-size: 2rem;
}

.ideal-for strong {
    color: var(--text-dark);
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    background-color: #FAFAFA;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background-color: #F0F9F8;
    transform: translateX(5px);
}

.benefits-list .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list p {
    margin: 0;
    font-size: 1.05rem;
}

/* BONUSES SECTION */
.bonuses-section {
    padding: 80px 0;
    background-color: #FFF2E5; /* Soft orange background */
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 159, 28, 0.3);
}

.bonus-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bonus-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    padding: 30px;
    text-align: left;
}

.bonus-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: #FFF;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bonus-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bonus-content p {
    color: var(--text-muted);
}

.cta-container {
    margin-top: 40px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--surface);
    text-align: center;
}

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

.testimonial-card {
    background: #FAFAFA;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: left;
    box-shadow: var(--shadow-soft);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.user-details h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.stars {
    font-size: 0.9rem;
    color: #FFD166;
}

.testimonial-img img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
}

/* FINAL CTA & FOOTER */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1D9A8F 100%);
    color: #FFF;
    text-align: center;
}

.final-cta-section h2 {
    color: #FFF;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.payment-methods {
    margin-top: 30px;
}

.payment-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.warning-box {
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: left;
}

footer {
    background-color: #011627;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-content, .about-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .secure-checkout {
        justify-content: center;
    }

    .about-text {
        text-align: left;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .bonuses-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-section h2 {
        font-size: 2.2rem;
    }
}
