/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #6600CC;
    --secondary-color: #00BFFF;
    --accent-color: #00FFCC;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-dark: #0A0A1E;
    --bg-light: #F9F9FF;
    --bg-gradient: linear-gradient(135deg, #6600CC 0%, #00BFFF 100%);
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(102, 0, 204, 0.1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: none;
}

.logo svg {
    margin-right: 8px;
    height: 40px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--bg-gradient);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

nav ul li a:hover:after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }
}

/* Hero Section */
#hero {
    padding: 12rem 0 7rem;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    color: white;
}

#hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-decoration: none;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    text-decoration: none;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 10rem 0 5rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-visual {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    #hero .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-content {
        width: 50%;
    }
    
    .hero-visual {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }
}

/* Features Section */
section {
    padding: 5rem 0;
}

#benefits {
    background-color: var(--bg-light);
    position: relative;
}

.section-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.06;
    z-index: 1;
}

.pattern-top-right {
    top: 0;
    right: 0;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.pattern-bottom-left {
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border-top: 4px solid transparent;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(138, 43, 226, 0.2);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Methods Section */
#methods {
    padding: 5rem 0;
}

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

.method-item {
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.method-item::after {
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 0, 204, 0.1);
}

.method-item h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: var(--primary-color);
    position: relative;
}

.method-item h3:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.method-item p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.method-link {
    display: inline-block;
    margin-top: auto;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.method-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 0, 204, 0.2);
    text-decoration: none;
    color: white;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 0, 204, 0.1);
}

.testimonial .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
    position: relative;
    color: var(--text-color);
}

.testimonial .quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(102, 0, 204, 0.1);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

/* FAQ Section */
#faq {
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 30px rgba(102, 0, 204, 0.1);
    transform: translateY(-3px);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.faq-item h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.faq-item h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CTA Section */
#cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

#cta h2, #cta p {
    color: white;
}

#cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

#cta .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
}

/* Footer Styles */
footer {
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #2A0845 0%, #4A00E0 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
}

.footer-logo svg {
    margin-right: 1rem;
    width: 40px;
    height: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content, .hero-visual {
        width: 100%;
    }
    
    .hero-visual {
        margin-top: 2rem;
        justify-content: center;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .benefits-grid, .methods-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        max-width: 100%;
    }
}
