/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8A2BE2; /* Purple */
    --secondary-color: #FF6B6B; /* Pinkish Red */
    --accent-color: #4ECDC4; /* Teal */
    --dark-bg: #131313;
    --darker-bg: #0a0a0a;
    --light-text: #ffffff;
    --gray-text: #bbbbbb;
    --card-bg: #1a1a1a;
}

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

.gradient-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                 radial-gradient(circle at bottom left, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    z-index: -1;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 12px auto 0;
    border-radius: 2px;
}

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

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

a {
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    width: 180px;
}

.logo-icon {
    width: 100%;
    height: auto;
}

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

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

.cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-note {
    font-size: 0.9rem;
    margin-top: 0.7rem;
    color: var(--gray-text);
    opacity: 0.8;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
    margin-left: 2rem;
}

.hero-svg {
    width: 100%;
    height: auto;
}

/* Buttons */
.primary-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.6);
    color: white;
}

.primary-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.primary-button:hover::after {
    opacity: 1;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

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

.benefit-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    top: 0;
    left: 0;
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-list {
    flex: 1;
    min-width: 280px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.2), transparent);
    top: 0;
    left: 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.step:hover {
    border-color: rgba(138, 43, 226, 0.2);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-arrow {
    width: 50px;
    flex-shrink: 0;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    top: 0;
    left: 0;
}

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

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.quote-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-text);
    font-style: italic;
}

.person {
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(255, 107, 107, 0.8) 100%), var(--darker-bg);
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: white;
}

.final-cta .primary-button {
    background: white;
    color: var(--primary-color);
    margin-top: 2rem;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

.final-cta .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    top: 0;
    left: 0;
}

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

.footer-logo {
    flex: 1;
    max-width: 180px;
}

.footer-icon {
    width: 100%;
    height: auto;
}

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

.footer-links a {
    color: var(--gray-text);
    font-size: 0.9rem;
}

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
    font-size: 0.85rem;
}

.disclaimer {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        text-align: center;
    }
    
    .cta-wrap {
        align-items: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
        margin-left: 0;
        max-width: 80%;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .feature-list {
        min-width: 100%;
    }
}
