/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #0a0a0a;
    line-height: 1.6;
}

/* Контейнеры */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: #0a0a0a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #0a0a0a;
}

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

.nav-link {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0a0a0a;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: rgba(10, 10, 10, 0.9);
}

.btn svg {
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 5rem 0 6rem;
    background: #f5f5f5;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-note {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.4);
    margin-top: 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(10, 10, 10, 0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0 8rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    background: #ececec;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 0, 0, 0.1);
}

.feature-icon .emoji {
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.feature-description {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.6);
}

/* Audience Section */
.audience {
    padding: 5rem 0 8rem;
    background: #f5f5f5;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.audience-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.audience-icon {
    width: 56px;
    height: 56px;
    background: #0a0a0a;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    transition: transform 0.3s;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
}

.audience-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #0a0a0a;
}

.audience-description {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.6);
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0 8rem;
    background: white;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #0a0a0a;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #0a0a0a;
}

.step-description {
    color: rgba(10, 10, 10, 0.6);
}

.steps-cta {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0 8rem;
    background: #f5f5f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.pricing-card-popular {
    border-color: #0a0a0a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.pricing-subtitle {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a0a0a;
}

.price-period {
    color: rgba(10, 10, 10, 0.6);
    margin-left: 0.5rem;
}

.price-amount-custom {
    font-size: 1.875rem;
    font-weight: 600;
    color: #0a0a0a;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.8);
}

/* For Artists Section */
.for-artists {
    padding: 5rem 0 8rem;
    background: white;
}

.artists-card {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.artists-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.artists-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.artists-description {
    font-size: 1.125rem;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.artists-description strong {
    color: #0a0a0a;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0 8rem;
    background: #f5f5f5;
}

.cta-form-container {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #0a0a0a;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    color: #0a0a0a;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0a0a0a;
    box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(10, 10, 10, 0.4);
}

.form-input {
    height: 48px;
}

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

.form-note {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.4);
    text-align: center;
}

/* Success Message */
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.success-text {
    color: rgba(10, 10, 10, 0.6);
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
    color: rgba(10, 10, 10, 0.6);
}

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

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

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

.logo-text-footer {
    color: #0a0a0a;
    font-weight: 500;
}

.footer-text {
    font-size: 0.875rem;
}

.footer-heading {
    color: #0a0a0a;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #0a0a0a;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .artists-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features-grid,
    .audience-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .about,
    .audience,
    .how-it-works,
    .pricing,
    .for-artists,
    .final-cta {
        padding: 3rem 0 5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}
