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

:root {
    --primary: #00c6ff;
    --primary-dark: #0072ff;
    --secondary: #7509e0;
    --dark: #15173c;
    --light: #f5f7ff;
    --gray: #8b8ba7;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --box-shadow: 0 10px 30px rgba(0, 114, 255, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--gray);
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
}

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

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

#menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
}

.menu-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-button span:nth-child(1) {
    top: 0;
}

.menu-button span:nth-child(2) {
    top: 8px;
}

.menu-button span:nth-child(3) {
    top: 16px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    max-width: 540px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.info-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--light);
}

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

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Generate Section */
.generate {
    padding: 6rem 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.generate::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    top: -150px;
    left: -150px;
}

.generate::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    bottom: -150px;
    right: -150px;
}

.steps {
    counter-reset: step;
    margin-bottom: 3rem;
}

.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.steps li:last-child {
    margin-bottom: 0;
}

.steps li::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.steps li:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.generate-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--light);
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--gradient);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta-section .cta-button:hover {
    background: var(--light);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background-color: var(--dark);
    color: var(--light);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links-column h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links-column ul li a {
    color: var(--gray);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .faq-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-button {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 99;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    #menu-toggle:checked ~ nav {
        right: 0;
    }
    
    #menu-toggle:checked ~ .menu-button span:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
    }
    
    #menu-toggle:checked ~ .menu-button span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ .menu-button span:nth-child(3) {
        transform: rotate(-45deg);
        top: 8px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        font-size: 0.9rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps li {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .steps li::after {
        display: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
