/*css/app.css */
* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    place-content: center;
    place-items: center;
    justify-content: space-between;
}

h1, h2, h3, h4, h5, p, span, textarea, a, input {
    overflow-wrap: break-all;
    word-wrap: break-all;
    word-break: break-all;
    text-align: center;
    text-align: start;
    color: var(--base_text_color);
    outline: none;
    font-size: var(--span-font-size);
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    background: #0a0015;
    color: #ffffff;
    padding: 0rem 1rem;
    margin: 0;
}

.header {
    display: flex;
    flex-direction: column;
    background: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2000;
    padding-right: 2.0rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu a {
    color: #a8a8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.hero {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    color: #a855f7;
    display: block;
}

.hero-content p {
    color: #a8a8b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    color: #a8a8b8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: bold;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-3px);
}

.welcome-section {
    background: linear-gradient(180deg, rgba(88, 28, 135, 0.2) 0%, transparent 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 2.0rem;
}

.welcome-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.welcome-section p {
    color: #a8a8b8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.welcome-box {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.stats-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.stats-content h2 span {
    color: #a855f7;
}

.stats-content p {
    color: #a8a8b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(168, 85, 247, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 0.85rem;
    color: #7c7c8c;
    margin: 0;
}

.advantages-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 0.7rem;
    padding: 0.05rem;
}

.advantages-section h2 {
    font-size: 3rem;
    font-weight: 700;
}

.advantages-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
    justify-content: space-between;
    gap: 4.0rem;
    width: 90%;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    transform: rotate(45deg);
    position: relative;
    aspect-ratio: 1;
}

.advantage-content {
    transform: rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.advantage-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    font-size: 0.85rem;
    color: #a8a8b8;
}

.steps-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: #a8a8b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.steps-image {
    position: relative;
}

.steps-image img {
    max-width: 100%;
    border-radius: 16px;
}

.faq-section {
    background: linear-gradient(180deg, rgba(88, 28, 135, 0.1) 0%, transparent 100%);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 0.7rem;
    padding: 0.05rem;
    width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 0.7rem;
    padding: 0.05rem;
    width: 100%;
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
    justify-content: space-between;
    gap: 1.0rem;
    width: 80%;
}

.faq-item {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(168, 85, 247, 0.1);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    color: #a855f7;
    font-size: 1.2rem;
}

.community-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
    justify-content: space-between;
    gap: 1.0rem;
    width: 80%;
    padding: 4rem 2rem;
    text-align: center;
}

.community-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community-section p {
    color: #a8a8b8;
    margin-bottom: 2rem;
}

.community-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
}

/* Footer */
.footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #a8a8b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(168, 85, 247, 0.2);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #a8a8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-payment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #333;
    font-weight: 600;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: #7c7c8c;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero, .stats-section, .steps-section {
        grid-template-columns: 1fr;
    }

    .advantages-grid, .services-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .advantages-grid, .services-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}