/* Base Styles and Variables */
:root {
    --primary: #f72585;
    --secondary: #3a0ca3;
    --dark: #10002b;
    --light: #f8f9fa;
    --background: #240046;
    --gradient: linear-gradient(135deg, #f72585, #7209b7, #3a0ca3);
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: rgba(248, 249, 250, 0.9);
}

a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

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

section {
    padding: 80px 20px;
}

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

/* Button Styles */
.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 10px 5px;
    font-family: 'Raleway', sans-serif;
}

.primary-button {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: var(--box-shadow);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #e80e74;
    color: white;
}

.large-button {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(16, 0, 43, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.logo span em {
    font-style: normal;
    opacity: 0.7;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: var(--transition);
}

nav a:not(.cta-button):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(58, 12, 163, 0.2) 0%, transparent 70%);
    z-index: -1;
}

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

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(248, 249, 250, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 500px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--background);
    padding: 100px 20px;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
}

.process-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.process-card {
    background: rgba(16, 0, 43, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    width: 250px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

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

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-icon {
    margin: 0 auto 20px;
    height: 60px;
}

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

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

.feature {
    background: rgba(58, 12, 163, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(247, 37, 133, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 37, 133, 0.3);
}

.feature-icon {
    margin-bottom: 20px;
    height: 50px;
}

/* Generator CTA Section */
.generator-cta {
    background: var(--gradient);
    padding: 100px 20px;
    text-align: center;
}

.generator-cta h2 {
    color: white;
}

.generator-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.generator-cta .primary-button {
    background: white;
    color: var(--primary);
    margin-bottom: 40px;
}

.generator-cta .primary-button:hover {
    background: var(--dark);
    color: white;
}

.users-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.users-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.testimonial {
    background: rgba(36, 0, 70, 0.6);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 350px;
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    color: #ffca28;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background-color: var(--background);
}

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

.faq-item {
    background: rgba(16, 0, 43, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--gradient);
    bottom: -8px;
    left: 0;
}

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

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

.footer-column a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 450px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .process-cards {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .users-info {
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        margin: 5px 0;
    }
    
    .process-card {
        width: 100%;
    }
    
    section {
        padding: 60px 15px;
    }
}
