/* NEWSLETTER - PROGRESSIVE INDUSTRIAL V131 */
.newsletter-section {
    padding: clamp(100px, 15vw, 250px) var(--inner-px);
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Technical Subtle Background */
.newsletter-section::before {
    content: 'NEWSLETTER SYSTEM v.01';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    letter-spacing: 5px;
}

.news-subtitle {
    font-size: 10px;
    letter-spacing: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 800;
    display: block;
}

.news-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 12vw, 15.5rem);
    line-height: 1.0;
    color: #000;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -6px;
    margin-bottom: 80px;
    display: block;
    mix-blend-mode: multiply;
}

.news-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    position: relative;
    border-bottom: 2px solid #000;
}

.news-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 30px 40px 30px 0;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
}

.news-input::placeholder {
    color: rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 800;
}

.news-input:focus {
    outline: none;
    padding-left: 20px;
}

.news-btn {
    background: transparent;
    color: #000;
    border: none;
    padding: 0 40px;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-btn i {
    width: 18px;
    height: 18px;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-btn:hover {
    color: var(--accent);
}

.news-btn:hover i {
    transform: translateX(10px);
}

@media (max-width: 1024px) {
    .news-title { letter-spacing: -2px; }
    .news-form { flex-direction: column; border: none; gap: 20px; }
    .news-input { border-bottom: 1px solid #000; padding: 20px 0; }
    .news-btn { padding: 20px 0; border: 1px solid #000; justify-content: center; }
}


