.ns-root { padding: 100px 0; }
.ns-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.ns-card { 
    padding: 80px 40px; 
    text-align: center; 
    border-radius: 40px; 
}

.ns-eyebrow { font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; color: hsl(var(--muted-foreground)); font-weight: 600; display: block; margin-bottom: 20px; }
.ns-title { font-size: clamp(32px, 5vw, 48px); font-weight: 300; margin-bottom: 20px; }
.ns-text { color: hsl(var(--muted-foreground)); max-width: 500px; margin: 0 auto 40px; line-height: 1.6; }

/* Form Layout */
.ns-form { 
    display: flex; 
    gap: 15px; 
    max-width: 500px; 
    margin: 0 auto; 
}

.ns-input-wrap { flex: 1; }

.ns-form input { 
    width: 100%; 
    height: 55px; 
    border-radius: 30px; 
    padding: 0 25px; 
    border: none; 
    font-size: 16px;
    color: hsl(var(--foreground));
    outline: none;
    transition: 0.3s;
}

.ns-btn { 
    height: 55px; 
    padding: 0 35px; 
    border-radius: 30px; 
    background: #1a1a1a; 
    color: white; 
    border: none; 
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.ns-btn:hover { background: #000; transform: translateY(-2px); }

/* Success State */
.ns-btn.success { background: #10b981 !important; color: white; }

.ns-privacy { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 25px; }

@media (max-width: 600px) {
    .ns-form { flex-direction: column; }
    .ns-btn { width: 100%; justify-content: center; }
}