:root {
    --primary-color: #FF7A59;
    --secondary-color: #4F46E5;
    --background-color: #F9FAFB;
    --text-color: #111827;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-color);
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-highlight {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(255, 122, 89, 0.3);
}

.btn-primary:hover {
    background-color: #e66040;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(255, 122, 89, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.btn-secondary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(79, 70, 229, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

header nav ul {
    display: none;
}

header nav .btn {
    display: inline-block;
}

@media (min-width: 768px) {
    header nav ul {
        display: flex;
        gap: 2rem;
        margin-right: 2rem;
    }

    header nav {
        display: flex;
        align-items: center;
    }
    
    h1 {
        font-size: 3.5rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 2rem;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: #EEF2FF;
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #E0E7FF;
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.guarantee-text {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text i {
    color: #10B981;
}

.media-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    max-width: 500px;
    margin: 0 auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-media {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    
    .guarantee-text {
        justify-content: flex-start;
    }
}

/* Wave Divider */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #F3F4F6;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.bg-blue { background-color: #3B82F6; }
.bg-green { background-color: #10B981; }
.bg-orange { background-color: #F59E0B; }
.bg-purple { background-color: #8B5CF6; }
.bg-red { background-color: #EF4444; }
.bg-teal { background-color: #14B8A6; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Preview Section */
.preview-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.preview-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.preview-item:hover {
    transform: scale(1.02);
}

.preview-item::after {
    content: '\f00e'; /* FontAwesome search-plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-item:hover::after {
    opacity: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.benefits-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: #FFF7ED;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefits-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
    .benefits-wrapper {
        flex-direction: row;
    }
    .benefits-content, .benefits-image {
        flex: 1;
    }
}

/* Bonus Section */
.bonus-section {
    padding: 4rem 0;
    background-color: #FFF7ED; /* Light orange tint */
}

.bonus-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px dashed var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bonus-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bonus-features i {
    color: #F59E0B;
}

@media (min-width: 768px) {
    .bonus-card {
        flex-direction: row;
        align-items: center;
        padding: 3rem;
    }
    .bonus-content, .bonus-image {
        flex: 1;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    color: #F59E0B;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background-color: #EEF2FF;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    line-height: 1.2;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    text-align: center;
}

.pricing-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 1rem;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.pricing-header p {
    color: #E0E7FF;
    margin: 0;
}

.pricing-price {
    padding: 2rem 0 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-features {
    padding: 1rem 2rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: #10B981;
}

.pricing-cta {
    padding: 2rem;
    background-color: #F9FAFB;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    color: #6B7280;
}

.guarantee-badge {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.guarantee-badge i {
    color: #10B981;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--white);
}

.final-cta-section p {
    color: #E0E7FF;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.final-cta-section .btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
}

.final-cta-section .btn-secondary:hover {
    background-color: #F3F4F6;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-block {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius-sm);
    min-width: 80px;
    font-size: 0.8rem;
}

.time-block span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #1F2937;
    color: #9CA3AF;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating Mobile Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.floating-btn a {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .floating-btn {
        display: none;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-sm);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
