:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gradient: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header Styles */
.futuristic-header {
    position: relative;
    padding: 80px 0 120px;
    text-align: center;
    background-color: var(--dark);
    color: white;
    overflow: hidden;
}

.futuristic-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--gray);
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.header-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--light));
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Video Section - Updated for YouTube Embed */
.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
    }

    .video-embed {
        order: 1;
    }

    .video-content {
        order: 2;
    }
}

/* Purchase Section */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    padding: 30px;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
}

.price span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.9;
}

.package-features {
    padding: 30px;
    list-style: none;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.purchase-form {
    padding: 0 30px 30px;
}

.purchase-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-methods img {
    height: 30px;
    width: auto;
    opacity: 0.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rating {
    color: #f59e0b;
    margin-bottom: 15px;
}

.author {
    margin-top: 20px;
    font-style: italic;
}

.author strong {
    display: block;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
}

.faq-question.active:after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background: white;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Footer */
.futuristic-footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-legal {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-legal p {
    margin-bottom: 10px;
}

.footer-legal a {
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

[loading="lazy"].loaded {
    opacity: 1;
}