/* Reset & Base Styles */
:root {
    --primary: #FF5722;
    --secondary: #3A0CA3;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --accent: #FFD700;
    --text: #333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Header */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.trust-badges {
    display: flex;
    gap: 10px;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-button-primary {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-primary:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: rgba(255, 87, 34, 0.1);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat p {
    font-size: 0.9rem;
    color: #666;
}

.floating-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
}

.label-hot, .label-trending {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.label-hot {
    background: #FF4081;
}

.label-trending {
    background: #3F51B5;
}

/* Features */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.features h2 span {
    color: var(--primary);
}

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

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    margin: 15px 0;
    color: var(--dark);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.testimonials h2 span {
    color: var(--primary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-video video {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-quotes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.quote p {
    font-style: italic;
    margin-bottom: 10px;
}

.quote span {
    font-weight: 600;
    color: var(--primary);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.faq h2 span {
    color: var(--primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
}

summary {
    font-weight: 600;
    outline: none;
}

details[open] summary {
    margin-bottom: 10px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta h2 span {
    color: var(--accent);
}

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

.cta-button-pulse {
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    animation: pulse 2s infinite;
    transition: all 0.3s;
}

.cta-button-pulse:hover {
    transform: scale(1.05);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding-top: 180px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}