/* ===================================
   NEWSLETTER PAGE STYLES
   =================================== */

.newsletter-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 60px;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(81, 48, 165, 0.15) 0%, rgba(2, 2, 10, 0) 70%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--color-accent), #7C3AED);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-title {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.feature-icon {
    color: var(--color-accent);
    margin-bottom: 8px;
}

.feature-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12px;
    color: var(--color-text-muted);
}

.newsletter-form-container {
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-title {
        font-size: 32px;
    }
}