/* AYOPA CreatorMart - Global Styles */

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

:root {
    --primary-color: #db2777;
    --primary-dark: #be185d;
    --bg-dark: #0a1628;
    --bg-medium: #1a2942;
    --text-light: #ffffff;
    --text-gray: #94a3b8;
    --text-dark: #cbd5e1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(219, 39, 119, 0.2);
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(219, 39, 119, 0.8);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Sections */
.hero {
    padding: 150px 50px 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(219, 39, 119, 0.1) 0%, transparent 70%);
}

.hero-small {
    padding: 120px 50px 60px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 60px 50px;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 80px;
}

.content-block h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-light);
}

.content-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-block h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-block ul,
.content-block ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-block li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: rgba(26, 41, 66, 0.6);
    border: 1px solid rgba(219, 39, 119, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(219, 39, 119, 0.2);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(26, 41, 66, 0.4);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.check {
    font-size: 24px;
    flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(26, 41, 66, 0.6);
    border: 1px solid rgba(219, 39, 119, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Why Now List */
.why-now-list {
    list-style: none;
    margin-left: 0;
}

.why-now-list li {
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(26, 41, 66, 0.4);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: rgba(219, 39, 119, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(219, 39, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219, 39, 119, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: rgba(10, 22, 40, 0.95);
    padding: 60px 50px 30px;
    border-top: 1px solid rgba(219, 39, 119, 0.2);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 14px;
}

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

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

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(219, 39, 119, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 41, 66, 0.6);
    border: 1px solid rgba(219, 39, 119, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(219, 39, 119, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(219, 39, 119, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ */
.faq-item {
    background: rgba(26, 41, 66, 0.6);
    border: 1px solid rgba(219, 39, 119, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h3 {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-block h2 {
        font-size: 32px;
    }

    .problem-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
